clean up properties
add distMgmt
add ci

Project: http://git-wip-us.apache.org/repos/asf/incubator-streams/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams/commit/ba9b20ba
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams/tree/ba9b20ba
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams/diff/ba9b20ba

Branch: refs/heads/STREAMS-245
Commit: ba9b20ba4827280d0d41fc1776d714110abe9432
Parents: 50ed7a6
Author: sblackmon <sblack...@w2odigital.com>
Authored: Fri Dec 5 16:26:09 2014 -0600
Committer: sblackmon <sblack...@w2odigital.com>
Committed: Fri Dec 5 16:26:09 2014 -0600

----------------------------------------------------------------------
 pom.xml | 50 ++++++++++++++++++++++++++++++++++++++++++++------
 1 file changed, 44 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams/blob/ba9b20ba/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 70499fc..9c75df6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -68,6 +68,11 @@
         <url>https://issues.apache.org/jira/browse/STREAMS</url>
     </issueManagement>
 
+    <ciManagement>
+        <system>jenkins</system>
+        <url>http://builds.apache.org/job/Streams%20Trunk/</url>
+    </ciManagement>
+
     <prerequisites>
         <maven>3.0.5</maven>
     </prerequisites>
@@ -135,9 +140,47 @@
         </repository>
     </repositories>
 
+    <distributionManagement>
+        <repository>
+            <id>streams.releases</id>
+            <name>Streams Releases</name>
+            <url>${release.repository.url}</url>
+        </repository>
+        <!-- Snapshots (not-releases) are published to this repository -->
+        <snapshotRepository>
+            <id>streams.snapshots</id>
+            <name>Streams Snapshots</name>
+            <url>${snapshot.repository.url}</url>
+        </snapshotRepository>
+        <site>
+            <id>apache.website</id>
+            
<url>scm:svn:https://svn.apache.org/repos/infra/websites/production/streams/content/site/</url>
+        </site>
+    </distributionManagement>
+
     <properties>
+
+        <!-- Build Properties -->
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <java.version>1.7</java.version>
+
+        <!-- Release Properties -->
+        <snapshot.repository.url>
+            https://repository.apache.org/content/repositories/snapshots
+        </snapshot.repository.url>
+        <release.repository.url>
+            https://repository.apache.org/service/local/staging/deploy/maven2
+        </release.repository.url>
+
+        <!-- Plugin and Plugin Dependency Versions -->
+        <compiler.plugin.version>3.0</compiler.plugin.version>
+        <failsafe.plugin.version>2.17</failsafe.plugin.version>
+        <surefire.plugin.version>2.17</surefire.plugin.version>
+        <war.plugin.version>2.5</war.plugin.version>
+        <site.plugin.version>3.4</site.plugin.version>
+        <maven.enforcer.plugin.version>1.3.1</maven.enforcer.plugin.version>
+
+        <!-- Library Dependency Versions -->
         <org.osgi.service.http.port>8080</org.osgi.service.http.port>
         
<org.osgi.service.http.port.secure>8443</org.osgi.service.http.port.secure>
         <jackson.version>2.3.2</jackson.version>
@@ -151,9 +194,6 @@
         <jaxb2-basics.version>0.8.4</jaxb2-basics.version>
         <jaxbutil.version>1.2.6</jaxbutil.version>
         <junit.version>4.11</junit.version>
-        <surefire.plugin.version>2.17</surefire.plugin.version>
-        <failsafe.plugin.version>2.17</failsafe.plugin.version>
-        <war.plugin.version>2.5</war.plugin.version>
         <slf4j.version>1.7.6</slf4j.version>
         <log4j.version>1.2.16</log4j.version>
         <logback.version>1.1.1</logback.version>
@@ -169,8 +209,6 @@
         <json-path.version>0.9.1</json-path.version>
         <build-helper.version>1.8</build-helper.version>
         <facebook4j.version>2.1.0</facebook4j.version>
-        <site.plugin.version>3.4</site.plugin.version>
-        <maven.enforcer.plugin.version>1.3.1</maven.enforcer.plugin.version>
         <mockito.version>1.9.5</mockito.version>
         <powermock.version>1.5.6</powermock.version>
         <httpcomponents.core.version>4.3.3</httpcomponents.core.version>
@@ -199,7 +237,7 @@
         <plugins>
             <plugin>
                 <artifactId>maven-compiler-plugin</artifactId>
-                <version>3.0</version>
+                <version>${compiler.plugin.version}</version>
                 <configuration>
                     <source>${java.version}</source>
                     <target>${java.version}</target>

Reply via email to