Projekt in ein eigenes GIT-Repository ohne Parent-Modul separiert
[percentcodec] / pom.xml
diff --git a/pom.xml b/pom.xml
index 8e8b05c..9956078 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -4,89 +4,94 @@
 
   <modelVersion>4.0.0</modelVersion>
 
-  <groupId>de.halbekunst</groupId>
-  <artifactId>juplo</artifactId>
-  <version>1.0.1-SNAPSHOT</version>
-  <name>Juplo</name>
-  <packaging>pom</packaging>
-  <url>http://www.halbekunst.de</url>
+  <groupId>de.juplo</groupId>
+  <artifactId>juplo-percentcodec</artifactId>
+  <name>Juplo - Percent-Codec</name>
+  <version>1.0.1</version>
+  <url>http://www.juplo.de/percentcodec</url>
 
   <prerequisites>
     <maven>2.0.6</maven>
   </prerequisites>
 
+  <scm>
+    <connection>scm:git:http://juplo.de/git/percentcodec</connection>
+    <developerConnection>scm:git:ssh://ich-geh-kaputt.de:/home/kai/git/juplo/percentcodec</developerConnection>
+    <url>http://juplo.de/git</url>
+  </scm>
+
   <developers>
     <developer>
       <id>kai</id>
       <name>Kai Moritz</name>
-      <email>kai@ich-geh-kaputt.de</email>
+      <email>kai@juplo.de</email>
     </developer>
   </developers>
 
-  <modules>
-    <module>test</module>
-    <module>cachecontrol</module>
-    <module>utils</module>
-  </modules>
-
   <properties>
-
     <!-- Zeichensatz -->
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-
     <!-- Verwendete Versionen -->
     <junit.version>4.8.1</junit.version>
-    <log4j.version>1.2.15</log4j.version>
-    <servlet-api.version>2.5</servlet-api.version>
+    <log4j.version>1.2.16</log4j.version>
     <slf4j.version>1.6.1</slf4j.version>
-    <springframework.version>3.0.6.RELEASE</springframework.version>
-
   </properties>
 
   <dependencies>
-
-    <!-- Logging -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junit.version}</version>
+      <scope>test</scope>
+    </dependency>
     <dependency>
       <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-api</artifactId>
+      <artifactId>slf4j-log4j12</artifactId>
       <version>${slf4j.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>log4j</groupId>
+          <artifactId>log4j</artifactId>
+        </exclusion>
+      </exclusions>
+      <scope>test</scope>
     </dependency>
-
-    <!-- Test -->
     <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>${junit.version}</version>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>${log4j.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>javax.mail</groupId>
+          <artifactId>mail</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>javax.jms</groupId>
+          <artifactId>jms</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>com.sun.jdmk</groupId>
+          <artifactId>jmxtools</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>com.sun.jmx</groupId>
+          <artifactId>jmxri</artifactId>
+        </exclusion>
+      </exclusions>
       <scope>test</scope>
     </dependency>
-
   </dependencies>
 
-  <repositories>
-    <!-- For JSR 303, Hibernate Validator and other Hibernate-Stuff - Encourage JBoss to publish these artifacts to Maven Central! -->
-    <repository>
-      <id>org.jboss.repository.maven</id>
-      <url>http://repository.jboss.org/maven2</url>
-      <snapshots><enabled>false</enabled></snapshots>
-    </repository>
-    <repository>
-      <id>halbekunst.internal</id>
-      <name>Internal Release Repository</name>
-      <url>http://halbekunst.de/archiva/repository/internal/</url>
-      <snapshots><enabled>false</enabled></snapshots>
-    </repository>
-  </repositories>
-
   <distributionManagement>
     <repository>
-      <id>halbekunst.internal</id>
+      <id>juplo.internal</id>
       <name>Internal Release Repository</name>
-      <url>http://halbekunst.de/archiva/repository/internal/</url>
+      <url>http://juplo.de/archiva/repository/internal/</url>
     </repository>
     <snapshotRepository>
-      <id>halbekunst.snapshots</id>
+      <id>juplo.snapshots</id>
       <name>Internal Snapshot Repository</name>
-      <url>http://halbekunst.de/archiva/repository/snapshots/</url>
+      <url>http://juplo.de/archiva/repository/snapshots/</url>
     </snapshotRepository>
   </distributionManagement>
 
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-scm-plugin</artifactId>
+        <configuration>
+          <goals>install</goals>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 
       </plugin>
       <plugin>
         <artifactId>maven-surefire-report-plugin</artifactId>
+        <version>2.7.2</version>
       </plugin>
     </plugins>
   </reporting>