diff options
-rw-r--r-- | BKUCommonGUI/pom.xml | 11 | ||||
-rw-r--r-- | STAL/pom.xml | 11 | ||||
-rw-r--r-- | pom.xml | 9 | ||||
-rw-r--r-- | smcc/pom.xml | 13 | ||||
-rw-r--r-- | smccSTAL/pom.xml | 11 |
5 files changed, 53 insertions, 2 deletions
diff --git a/BKUCommonGUI/pom.xml b/BKUCommonGUI/pom.xml index 1aea89f6..c620746f 100644 --- a/BKUCommonGUI/pom.xml +++ b/BKUCommonGUI/pom.xml @@ -23,6 +23,17 @@ <scope>compile</scope>
</dependency>
</dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <groupId>org.apache.maven.plugins</groupId>
+ <configuration>
+ <debug>false</debug>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
<!--build> <plugins> <plugin> diff --git a/STAL/pom.xml b/STAL/pom.xml index 3d91dcc7..8d59722e 100644 --- a/STAL/pom.xml +++ b/STAL/pom.xml @@ -16,6 +16,17 @@ <artifactId>commons-logging</artifactId> </dependency> </dependencies> + <build> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <groupId>org.apache.maven.plugins</groupId> + <configuration> + <debug>false</debug> + </configuration> + </plugin> + </plugins> + </build> <!--build> <plugins> <plugin> @@ -41,7 +41,9 @@ </developer>
</developers>
<scm>
- <url>svn://svn.egovlabs.gv.at/svnroot/mocca</url>
+ <connection>scm:svn:svn://svn.egovlabs.gv.at/svnroot/mocca/trunk</connection>
+ <developerConnection>scm:svn:svn+ssh://svn.egovlabs.gv.at/svnroot/mocca/trunk</developerConnection>
+ <url>svn://svn.egovlabs.gv.at/svnroot/mocca/trunk</url>
</scm>
<organization>
<name>E-Government Innovation Center (EGIZ)</name>
@@ -92,6 +94,11 @@ <groupId>org.codehaus.mojo</groupId>
<version>1.10</version>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <version>2.0-beta-7</version>
+ </plugin>
</plugins>
</pluginManagement>
<plugins>
diff --git a/smcc/pom.xml b/smcc/pom.xml index 110635c7..39af114f 100644 --- a/smcc/pom.xml +++ b/smcc/pom.xml @@ -12,6 +12,17 @@ <packaging>jar</packaging>
<version>1.0</version>
<url>http://bku.egiz.gv.at</url>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <groupId>org.apache.maven.plugins</groupId>
+ <configuration>
+ <debug>false</debug>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
<dependencies>
<dependency>
<groupId>commons-logging</groupId>
@@ -28,5 +39,5 @@ <groupId>iaik</groupId>
<artifactId>iaik_jce_full_signed</artifactId>
</dependency> -->
- </dependencies>
+ </dependencies>
</project>
diff --git a/smccSTAL/pom.xml b/smccSTAL/pom.xml index d4a523b1..5c03cffd 100644 --- a/smccSTAL/pom.xml +++ b/smccSTAL/pom.xml @@ -11,6 +11,17 @@ <artifactId>smccSTAL</artifactId>
<name>smcc STAL</name>
<version>1.0</version>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <groupId>org.apache.maven.plugins</groupId>
+ <configuration>
+ <debug>false</debug>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
<dependencies>
<dependency>
<groupId>at.gv.egiz</groupId>
|