Author: vanto
Date: Mon Jun 21 16:06:47 2010
New Revision: 956627
URL: http://svn.apache.org/viewvc?rev=956627&view=rev
Log:
added a CI profile for nightly snapshots
Modified:
ode/trunk/pom.xml
Modified: ode/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/ode/trunk/pom.xml?rev=956627&r1=956626&r2=956627&view=diff
==============================================================================
--- ode/trunk/pom.xml (original)
+++ ode/trunk/pom.xml Mon Jun 21 16:06:47 2010
@@ -954,5 +954,47 @@
</dependency>
</dependencies>
</dependencyManagement>
-
+ <profiles>
+ <profile>
+ <id>CIBuild</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <property>
+ <name>build</name>
+ <value>CI</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+
<encoding>${project.build.sourceEncoding}</encoding>
+ </configuration>
+ <executions>
+ <execution>
+ <id>attach-javadocs</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project>