[FOray-commit] SF.net SVN: foray:[11316] trunk/foray/foray-all
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2017-01-16 07:10:25
|
Revision: 11316
http://sourceforge.net/p/foray/code/11316
Author: victormote
Date: 2017-01-16 07:10:22 +0000 (Mon, 16 Jan 2017)
Log Message:
-----------
Add configuration to deploy snapshot to Sonatype. Create some Eclipse launch configurations to do the build.
Modified Paths:
--------------
trunk/foray/foray-all/pom.xml
Added Paths:
-----------
trunk/foray/foray-all/scripts/eclipse/launch-configurations/foray-all-build.launch
trunk/foray/foray-all/scripts/eclipse/launch-configurations/foray-all-deploy.launch
Modified: trunk/foray/foray-all/pom.xml
===================================================================
--- trunk/foray/foray-all/pom.xml 2017-01-16 06:40:39 UTC (rev 11315)
+++ trunk/foray/foray-all/pom.xml 2017-01-16 07:10:22 UTC (rev 11316)
@@ -13,14 +13,7 @@
<groupId>org.foray</groupId>
<artifactId>foray-all</artifactId>
<version>0.4-SNAPSHOT</version>
-
<packaging>pom</packaging>
-
- <parent>
- <groupId>org.sonatype.oss</groupId>
- <artifactId>oss-parent</artifactId>
- <version>7</version>
- </parent>
<name>foray-all</name>
<dependencyManagement>
@@ -629,6 +622,17 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
+ <plugin>
+ <groupId>org.sonatype.plugins</groupId>
+ <artifactId>nexus-staging-maven-plugin</artifactId>
+ <version>1.6.7</version>
+ <extensions>true</extensions>
+ <configuration>
+ <serverId>sonatype-nexus-snapshots</serverId>
+ <nexusUrl>https://oss.sonatype.org/</nexusUrl>
+ <autoReleaseAfterClose>false</autoReleaseAfterClose>
+ </configuration>
+ </plugin>
</plugins>
</build>
@@ -654,6 +658,17 @@
<module>../foray-xml</module>
</modules>
+ <distributionManagement>
+ <snapshotRepository>
+ <id>sonatype-nexus-snapshots</id>
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+ </snapshotRepository>
+ <repository>
+ <id>sonatype-nexus-staging</id>
+ <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
+ </repository>
+ </distributionManagement>
+
</project>
<!-- Last line of POM -->
Added: trunk/foray/foray-all/scripts/eclipse/launch-configurations/foray-all-build.launch
===================================================================
--- trunk/foray/foray-all/scripts/eclipse/launch-configurations/foray-all-build.launch (rev 0)
+++ trunk/foray/foray-all/scripts/eclipse/launch-configurations/foray-all-build.launch 2017-01-16 07:10:22 UTC (rev 11316)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<launchConfiguration type="org.eclipse.m2e.Maven2LaunchConfigurationType">
+<booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>
+<stringAttribute key="M2_GOALS" value="clean install"/>
+<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
+<booleanAttribute key="M2_OFFLINE" value="false"/>
+<stringAttribute key="M2_PROFILES" value=""/>
+<listAttribute key="M2_PROPERTIES"/>
+<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
+<booleanAttribute key="M2_SKIP_TESTS" value="false"/>
+<intAttribute key="M2_THREADS" value="1"/>
+<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
+<stringAttribute key="M2_USER_SETTINGS" value=""/>
+<booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
+<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
+<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${project_loc:foray-all}"/>
+</launchConfiguration>
Added: trunk/foray/foray-all/scripts/eclipse/launch-configurations/foray-all-deploy.launch
===================================================================
--- trunk/foray/foray-all/scripts/eclipse/launch-configurations/foray-all-deploy.launch (rev 0)
+++ trunk/foray/foray-all/scripts/eclipse/launch-configurations/foray-all-deploy.launch 2017-01-16 07:10:22 UTC (rev 11316)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<launchConfiguration type="org.eclipse.m2e.Maven2LaunchConfigurationType">
+<booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>
+<stringAttribute key="M2_GOALS" value="clean deploy"/>
+<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
+<booleanAttribute key="M2_OFFLINE" value="false"/>
+<stringAttribute key="M2_PROFILES" value=""/>
+<listAttribute key="M2_PROPERTIES"/>
+<stringAttribute key="M2_RUNTIME" value="apache-maven-3.2.5"/>
+<booleanAttribute key="M2_SKIP_TESTS" value="false"/>
+<intAttribute key="M2_THREADS" value="1"/>
+<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
+<stringAttribute key="M2_USER_SETTINGS" value=""/>
+<booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
+<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
+<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${project_loc:foray-all}"/>
+</launchConfiguration>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|