Author: sisbell Date: Mon Feb 11 19:36:19 2008 New Revision: 620696 URL: http://svn.apache.org/viewvc?rev=620696&view=rev Log: Update pom for releases.
Modified: incubator/nmaven/trunk/maven-dotnet.iml incubator/nmaven/trunk/maven-dotnet.ipr incubator/nmaven/trunk/pom.xml Modified: incubator/nmaven/trunk/maven-dotnet.iml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/maven-dotnet.iml?rev=620696&r1=620695&r2=620696&view=diff ============================================================================== --- incubator/nmaven/trunk/maven-dotnet.iml (original) +++ incubator/nmaven/trunk/maven-dotnet.iml Mon Feb 11 19:36:19 2008 @@ -6,10 +6,12 @@ <content url="file://$MODULE_DIR$"> <sourceFolder url="file://$MODULE_DIR$/components/maven-dotnet-assembler/src/main/java" isTestSource="false" /> <sourceFolder url="file://$MODULE_DIR$/components/maven-dotnet-compiler/src/main/java" isTestSource="false" /> - <sourceFolder url="file://$MODULE_DIR$/components/maven-dotnet-core-it-runner/src/test/java" isTestSource="false" /> + <sourceFolder url="file://$MODULE_DIR$/components/maven-dotnet-compiler/src/test/java" isTestSource="true" /> + <sourceFolder url="file://$MODULE_DIR$/components/maven-dotnet-core-it-runner/src/test" isTestSource="true" /> + <sourceFolder url="file://$MODULE_DIR$/components/maven-dotnet-core-it-runner/src/test/java" isTestSource="true" /> <sourceFolder url="file://$MODULE_DIR$/components/maven-dotnet-core/src/main/java" isTestSource="false" /> <sourceFolder url="file://$MODULE_DIR$/components/maven-dotnet-extensions/src/main/java" isTestSource="false" /> - <sourceFolder url="file://$MODULE_DIR$/core-integration-tests/src/test/java" isTestSource="false" /> + <sourceFolder url="file://$MODULE_DIR$/core-integration-tests/src/test/java" isTestSource="true" /> <sourceFolder url="file://$MODULE_DIR$/plugins/maven-dotnet-compiler-plugin/src/main/java" isTestSource="false" /> <sourceFolder url="file://$MODULE_DIR$/plugins/maven-dotnet-test-plugin/src/main/java" isTestSource="false" /> </content> @@ -151,15 +153,6 @@ </library> </orderEntry> <orderEntry type="module-library" exported=""> - <library name="Maven Dependency: junit:junit:jar:3.8.1:test"> - <CLASSES> - <root url="jar://$MODULE_DIR$/../../../.m2/junit/junit/3.8.1/junit-3.8.1.jar!/" /> - </CLASSES> - <JAVADOC /> - <SOURCES /> - </library> - </orderEntry> - <orderEntry type="module-library" exported=""> <library name="Maven Dependency: net.java.dev.stax-utils:stax-utils:jar:20040917:compile"> <CLASSES> <root url="jar://$MODULE_DIR$/../../../.m2/net/java/dev/stax-utils/stax-utils/20040917/stax-utils-20040917.jar!/" /> @@ -361,6 +354,15 @@ <library name="Maven Dependency: xmlpull:xmlpull:jar:1.1.3.4a:compile"> <CLASSES> <root url="jar://$MODULE_DIR$/../../../.m2/xmlpull/xmlpull/1.1.3.4a/xmlpull-1.1.3.4a.jar!/" /> + </CLASSES> + <JAVADOC /> + <SOURCES /> + </library> + </orderEntry> + <orderEntry type="module-library"> + <library> + <CLASSES> + <root url="jar://$localRepository$/junit/junit/4.4/junit-4.4.jar!/" /> </CLASSES> <JAVADOC /> <SOURCES /> Modified: incubator/nmaven/trunk/maven-dotnet.ipr URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/maven-dotnet.ipr?rev=620696&r1=620695&r2=620696&view=diff ============================================================================== --- incubator/nmaven/trunk/maven-dotnet.ipr (original) +++ incubator/nmaven/trunk/maven-dotnet.ipr Mon Feb 11 19:36:19 2008 @@ -369,5 +369,8 @@ <option name="INSTRUMENT_CLASSES" value="true" /> <option name="COPY_FORMS_RUNTIME_TO_OUTPUT" value="true" /> </component> + <UsedPathMacros> + <macro name="localRepository" /> + </UsedPathMacros> </project> Modified: incubator/nmaven/trunk/pom.xml URL: http://svn.apache.org/viewvc/incubator/nmaven/trunk/pom.xml?rev=620696&r1=620695&r2=620696&view=diff ============================================================================== --- incubator/nmaven/trunk/pom.xml (original) +++ incubator/nmaven/trunk/pom.xml Mon Feb 11 19:36:19 2008 @@ -226,6 +226,32 @@ </dependencyManagement> <profiles> <profile> + <id>release</id> + <build> + <plugins> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <inherited>false</inherited> + <configuration> + <descriptors> + <descriptor>src/main/assembly/src.xml</descriptor> + </descriptors> + <tarLongFileMode>gnu</tarLongFileMode> + </configuration> + <executions> + <execution> + <id>make-assembly</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + <profile> <id>run-its</id> <modules> <module>core-integration-tests</module>