[LOGBack-dev] svn commit: r85 - logback/core/trunk

noreply.seb at qos.ch noreply.seb at qos.ch
Mon Jul 17 10:55:17 CEST 2006


Author: seb
Date: Mon Jul 17 10:55:16 2006
New Revision: 85

Modified:
   logback/core/trunk/pom.xml
Log:
back to single module structure

Modified: logback/core/trunk/pom.xml
==============================================================================
--- logback/core/trunk/pom.xml	(original)
+++ logback/core/trunk/pom.xml	Mon Jul 17 10:55:16 2006
@@ -2,33 +2,33 @@
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
+
 	<modelVersion>4.0.0</modelVersion>
-	<!-- groupId>qos.ch</groupId -->
-	<groupId>ch.qos.logback.core</groupId>
-	<artifactId>logback-core</artifactId>
+
+	<groupId>ch.qos.logback</groupId>
+	<artifactId>core</artifactId>
 	<packaging>jar</packaging>
 	<version>0.1-SNAPSHOT</version>
-	<name>Logback Core Module</name>
+	<name>LOGBack Core Module</name>
 
 	<url>http://logback.qos.ch</url>
 	<description>
-		LOGBack: the generic, reliable, fast and flexible logging library for
-		Java.
+		LOGBack: the generic, reliable, fast and flexible logging library for	Java.
 	</description>
-
+	
 	<dependencies>
 		<dependency>
 			<groupId>janino</groupId>
 			<artifactId>janino</artifactId>
 			<version>2.4.3</version>
 		</dependency>
-
+		
 		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<version>3.8.1</version>
-			<scope>test</scope>
-		</dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
 	</dependencies>
 
 
@@ -51,7 +51,6 @@
 					<forkMode>once</forkMode>
 					<reportFormat>plain</reportFormat>
 					<trimStackTrace>false</trimStackTrace>
-					<!-- workingDirectory>${basedir}/src/test</workingDirectory -->
 					<excludes>
 						<exclude>**/AllTest.java</exclude>
 						<exclude>**/PackageTest.java</exclude>
@@ -59,27 +58,36 @@
 				</configuration>
 			</plugin>
 
-			<!-- No use of this plugin to package ?-->
-			<!-- plugin>
+			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-jar-plugin</artifactId>
-				</plugin -->
+				<executions>
+					<execution>
+						<id>bundle-test-jar</id>
+                        <phase>package</phase> 
+						<goals>
+							<goal>jar</goal>
+							<goal>test-jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
 
 			<plugin>
 				<artifactId>maven-assembly-plugin</artifactId>
 				<version>2.0-beta-1</version>
 				<configuration>
 					<descriptor>
-							src/main/assembly/source.xml
+						src/main/assembly/source.xml
 					</descriptor>
 					<!-- descriptors>
 						<descriptor>
-							src/main/assembly/simple-zip.xml
+						src/main/assembly/simple-zip.xml
 						</descriptor>
 						<descriptor>
-							src/main/assembly/jar-with-dependencies.xml
+						src/main/assembly/jar-with-dependencies.xml
 						</descriptor>
-					</descriptors -->
+						</descriptors -->
 					<finalName>LOGBackCore</finalName>
 					<outputDirectory>target/dist</outputDirectory>
 				</configuration>
@@ -102,9 +110,19 @@
 		</testResources>
 	</build>
 
+	<!-- LOGBack Core Repository ================================================ -->
+
+	<scm>
+		<connection>
+			scm:svn:http://svn.qos.ch/viewcvs/logback/core/trunk/
+		</connection>
+		<developerConnection>
+			scm:svn:https://svn.qos.ch/repos/logback/core/trunk/
+		</developerConnection>
+		<url>http://svn.qos.ch/viewcvs/logback/core/trunk/</url>
+	</scm>
 
-	<!-- Mailing Lists ======================================================= -->
-	<!-- Should be inserted into Main project POM -->
+  	<!-- Mailing Lists ======================================================= -->
 	<mailingLists>
 		<mailingList>
 			<name>LOGBack Announce List</name>
@@ -144,7 +162,6 @@
 	</mailingLists>
 
 	<!-- LOGBack Committers ==================================================== -->
-	<!-- Should be inserted into Main project POM -->
 	<developers>
 
 		<developer>
@@ -163,18 +180,4 @@
 
 	</developers>
 
-	<!-- LOGBack Core Repository ================================================ -->
-
-	<scm>
-		<connection>
-			scm:svn:http://svn.qos.ch/viewcvs/logback/core/trunk/
-		</connection>
-		<developerConnection>
-			scm:svn:https://svn.qos.ch/repos/logback/core/trunk/
-		</developerConnection>
-		<url>http://svn.qos.ch/viewcvs/logback/core/trunk/</url>
-	</scm>
-
-
-
 </project>
\ No newline at end of file



More information about the logback-dev mailing list