You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by ch...@apache.org on 2012/10/18 22:30:10 UTC

svn commit: r1399835 - /incubator/ctakes/trunk/pom.xml

Author: chenpei
Date: Thu Oct 18 20:30:10 2012
New Revision: 1399835

URL: http://svn.apache.org/viewvc?rev=1399835&view=rev
Log:
https://issues.apache.org/jira/browse/CTAKES-73
Make the main pom inherit from ASF pom (this will set the distribution management settings properly for release management)
Added links to url, issues management, continuous integration, mailing lists.

Modified:
    incubator/ctakes/trunk/pom.xml

Modified: incubator/ctakes/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/ctakes/trunk/pom.xml?rev=1399835&r1=1399834&r2=1399835&view=diff
==============================================================================
--- incubator/ctakes/trunk/pom.xml (original)
+++ incubator/ctakes/trunk/pom.xml Thu Oct 18 20:30:10 2012
@@ -5,7 +5,9 @@
 	<artifactId>ctakes</artifactId>
 	<version>3.0.0-incubating-SNAPSHOT</version>
 	<packaging>pom</packaging>
-	<name>cTAKES</name>
+	<name>Apache cTAKES</name>
+	<url>http://incubator.apache.org/ctakes/</url>
+	<inceptionYear>2012</inceptionYear>
 	<scm>
 		<!-- In child modules, Maven will append ${artifactId} to the following 
 			URLs -->
@@ -13,12 +15,56 @@
 		<developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/ctakes/trunk</developerConnection>
 		<url>https://svn.apache.org/repos/asf/incubator/ctakes/trunk</url>
 	</scm>
+	<issueManagement>
+		<system>jira</system>
+		<url>https://issues.apache.org/jira/browse/ctakes</url>
+	</issueManagement>
+	<ciManagement>
+		<system>jenkins</system>
+		<url>http://builds.apache.org/ctakes</url>
+	</ciManagement>
+	<mailingLists>
+		<mailingList>
+			<name>Apache cTAKES Users</name>
+			<subscribe>ctakes-user-subscribe@incubator.apache.org</subscribe>
+			<unsubscribe>ctakes-user-unsubscribe@incubator.apache.org</unsubscribe>
+			<post>ctakes-user@incubator.apache.org</post>
+			<archive>http://mail-archives.apache.org/mod_mbox/incubator-ctakes-user/</archive>
+		</mailingList>
+
+		<mailingList>
+			<name>Apache cTAKES Developers</name>
+			<subscribe>ctakes-dev-subscribe@incubator.apache.org</subscribe>
+			<unsubscribe>ctakes-dev-unsubscribe@incubator.apache.org</unsubscribe>
+			<post>ctakes-dev@incubator.apache.org</post>
+			<archive>http://mail-archives.apache.org/mod_mbox/incubator-ctakes-dev/</archive>
+		</mailingList>
+
+		<mailingList>
+			<name>Apache cTAKES Commits</name>
+			<subscribe>ctakes-commits-subscribe@incubator.apache.org</subscribe>
+			<unsubscribe>ctakes-commits-unsubscribe@incubator.apache.org</unsubscribe>
+			<archive>http://mail-archives.apache.org/mod_mbox/incubator-ctakes-commits/</archive>
+		</mailingList>
+
+		<mailingList>
+			<name>Apache cTAKES Notifications</name>
+			<subscribe>ctakes-notifications-subscribe@incubator.apache.org</subscribe>
+			<unsubscribe>ctakes-notifications-unsubscribe@incubator.apache.org</unsubscribe>
+			<archive>http://mail-archives.apache.org/mod_mbox/incubator-ctakes-notifications/</archive>
+		</mailingList>
+	</mailingLists>
 	<properties>
 		<ctakes.version>3.0.0-incubating-SNAPSHOT</ctakes.version>
 		<maven.compiler.source>1.6</maven.compiler.source>
 		<maven.compiler.target>1.6</maven.compiler.target>
 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 	</properties>
+	<parent>
+		<groupId>org.apache</groupId>
+		<artifactId>apache</artifactId>
+		<version>11</version>
+	</parent>
 	<modules>
 		<module>ctakes-utils</module>
 		<module>ctakes-core</module>
@@ -40,9 +86,9 @@
 		<module>ctakes-pad-term-spotter</module>
 		<module>ctakes-assertion</module>
 		<module>ctakes-temporal</module>
-		
-		<!--  pipeline and distribution should always be last -->
-		<module>ctakes-clinical-pipeline</module>		
+
+		<!-- pipeline and distribution should always be last -->
+		<module>ctakes-clinical-pipeline</module>
 		<module>ctakes-distribution</module>
 	</modules>
 	<dependencyManagement>
@@ -364,6 +410,11 @@
 				<plugin>
 					<artifactId>maven-compiler-plugin</artifactId>
 					<version>2.4</version>
+					<configuration>
+						<source>1.6</source>
+						<target>1.6</target>
+						<compilerArgument>-Xlint</compilerArgument>
+					</configuration>
 				</plugin>
 				<plugin>
 					<artifactId>maven-deploy-plugin</artifactId>