Extras deployment
authorfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 11 Jan 2007 00:04:10 +0000 (00:04 +0000)
committerfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 11 Jan 2007 00:04:10 +0000 (00:04 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@495052 13f79535-47bb-0310-9956-ffa450edef68

res/maven/juli-adapters.pom [new file with mode: 0644]
res/maven/juli-extras.pom [new file with mode: 0644]
res/maven/mvn-pub.xml
res/maven/mvn.properties.default

diff --git a/res/maven/juli-adapters.pom b/res/maven/juli-adapters.pom
new file mode 100644 (file)
index 0000000..6fb12eb
--- /dev/null
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?><project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.tomcat.extras</groupId>
+  <artifactId>juli-adapters</artifactId>
+  <version>@MAVEN.DEPLOY.VERSION@</version>
+  <description>Adapters to plug in other logging frameworks in Tomcat</description>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.tomcat.extras</groupId>
+      <artifactId>juli</artifactId>
+      <version>@MAVEN.DEPLOY.VERSION@</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tomcat</groupId>
+      <artifactId>servlet-api</artifactId>
+      <version>@MAVEN.DEPLOY.VERSION@</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
diff --git a/res/maven/juli-extras.pom b/res/maven/juli-extras.pom
new file mode 100644 (file)
index 0000000..10fa0af
--- /dev/null
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?><project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.tomcat.extras</groupId>
+  <artifactId>juli</artifactId>
+  <version>@MAVEN.DEPLOY.VERSION@</version>
+  <description>Replacement for Tomcat Core Logging Package</description>
+</project>
index 5b846ce..32690ad 100644 (file)
       <param name="artifactId" value="jasper"/>
       <param name="pom" value="${tomcat.pom.path}/jasper.pom"/>
     </antcall>
-    
-    
   </target>
-
+  <target name="deploy-extras">
+    <antcall target="maven-deploy"><!--Deploy Extras Juli-->
+      <param name="file" value="${tomcat.extras.path}/tomcat-juli.jar"/>
+      <param name="groupId" value="org.apache.tomcat.extras"/>
+      <param name="artifactId" value="juli"/>
+      <param name="pom" value="${tomcat.pom.path}/juli-extras.pom"/>
+    </antcall>
+    <antcall target="maven-deploy"><!--Deploy Extras Juli Adapters-->
+      <param name="file" value="${tomcat.extras.path}/tomcat-juli-adapters.jar"/>
+      <param name="groupId" value="org.apache.tomcat.extras"/>
+      <param name="artifactId" value="juli-adapters"/>
+      <param name="pom" value="${tomcat.pom.path}/juli-adapters.pom"/>
+    </antcall>
+  </target>
 </project>
index 16c3cf7..bb8ffd8 100644 (file)
@@ -6,3 +6,4 @@ maven.deploy.version=6.0.7-SNAPSHOT
 tomcat.lib.path=C:/development/tomcat/6.0/tc6.0.x/trunk/output/build/lib
 tomcat.bin.path=C:/development/tomcat/6.0/tc6.0.x/trunk/output/build/bin
 tomcat.pom.path=C:/development/tomcat/6.0/tc6.0.x/trunk/res/maven
+tomcat.extras.path=C:/development/tomcat/6.0/tc6.0.x/trunk/output/extras
\ No newline at end of file