* console add-on stable version 1.1.8
authorindvdum
Fri, 20 May 2011 23:48:23 +0400
changeset 13a16932cdfd58
parent 12 f3f82a361e62
child 14 f6b22b2ab1b9
* console add-on stable version 1.1.8
pom.xml
     1.1 --- a/pom.xml	Fri May 20 20:38:40 2011 +0400
     1.2 +++ b/pom.xml	Fri May 20 23:48:23 2011 +0400
     1.3 @@ -6,18 +6,27 @@
     1.4  
     1.5  	<groupId>org.vaadin.addons</groupId>
     1.6  	<artifactId>console</artifactId>
     1.7 -	<version>1.1.8-SNAPSHOT</version>
     1.8 +	<version>1.1.8</version>
     1.9  	<packaging>jar</packaging>
    1.10  	<name>Vaadin Console add-on</name>
    1.11 -	<parent>
    1.12 -		<groupId>ru.bazon.think-easy-money</groupId>
    1.13 -		<artifactId>think-easy-money-all</artifactId>
    1.14 -		<version>1.0-SNAPSHOT</version>
    1.15 -	</parent>
    1.16  
    1.17  	<build>
    1.18  		<plugins>
    1.19  			<plugin>
    1.20 +				<artifactId>maven-source-plugin</artifactId>
    1.21 +				<configuration>
    1.22 +					<attach>true</attach>
    1.23 +				</configuration>
    1.24 +				<executions>
    1.25 +					<execution>
    1.26 +						<phase>generate-sources</phase>
    1.27 +						<goals>
    1.28 +							<goal>jar</goal>
    1.29 +						</goals>
    1.30 +					</execution>
    1.31 +				</executions>
    1.32 +			</plugin>
    1.33 +			<plugin>
    1.34  				<groupId>org.apache.maven.plugins</groupId>
    1.35  				<artifactId>maven-compiler-plugin</artifactId>
    1.36  				<configuration>
    1.37 @@ -162,4 +171,27 @@
    1.38  		</dependency>
    1.39  	</dependencies>
    1.40  
    1.41 +	<repositories>
    1.42 +		<repository>
    1.43 +			<id>vaadin</id>
    1.44 +			<url>http://oss.sonatype.org/content/repositories/vaadin/</url>
    1.45 +			<releases>
    1.46 +				<enabled>true</enabled>
    1.47 +			</releases>
    1.48 +			<snapshots>
    1.49 +				<enabled>false</enabled>
    1.50 +			</snapshots>
    1.51 +		</repository>
    1.52 +		<repository>
    1.53 +			<id>vaadin-addons</id>
    1.54 +			<url>http://maven.vaadin.com/vaadin-addons</url>
    1.55 +			<releases>
    1.56 +				<enabled>true</enabled>
    1.57 +			</releases>
    1.58 +			<snapshots>
    1.59 +				<enabled>false</enabled>
    1.60 +			</snapshots>
    1.61 +		</repository>
    1.62 +	</repositories>
    1.63 +
    1.64  </project>