diff options
author | wbauer <wbauer@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2008-12-02 10:13:09 +0000 |
---|---|---|
committer | wbauer <wbauer@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2008-12-02 10:13:09 +0000 |
commit | 99134c1be5db0fedadc051922e70c9bf563ce16d (patch) | |
tree | 6745751351777c77ab55e6f11da88adacf27c910 /pom.xml | |
parent | dbc87e775dce65e0e048570bd232ef1fa4794fbb (diff) | |
download | mocca-99134c1be5db0fedadc051922e70c9bf563ce16d.tar.gz mocca-99134c1be5db0fedadc051922e70c9bf563ce16d.tar.bz2 mocca-99134c1be5db0fedadc051922e70c9bf563ce16d.zip |
Changed SLCommandFactory configuration mechanism and moved the actual configuration to spring's application context
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@231 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 51 |
1 files changed, 33 insertions, 18 deletions
@@ -1,4 +1,5 @@ -<project xmlns="http://maven.apache.org/POM/4.0.0" 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"> +<project xmlns="http://maven.apache.org/POM/4.0.0" 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>at.gv.egiz</groupId> <artifactId>bku</artifactId> @@ -38,15 +39,15 @@ </developer> </developers> <scm> - <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> + <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> <url>http://www.egiz.gv.at</url> </organization> - <build> + <build> <pluginManagement> <plugins> <plugin> @@ -56,20 +57,21 @@ <configuration> <!-- fork>true</fork> <executable>${java_6_sun}/bin/javac</executable> - <compilerVersion>1.6</compilerVersion --> + <compilerVersion>1.6</compilerVersion + --> <source>1.6</source> <target>1.6</target> <verbose>true</verbose> <showWarnings>true</showWarnings> - <encoding>UTF-8</encoding> + <encoding>UTF-8</encoding> + </configuration> + </plugin> + <plugin> + <artifactId>maven-resources-plugin</artifactId> + <configuration> + <encoding>UTF-8</encoding> </configuration> </plugin> - <plugin> - <artifactId>maven-resources-plugin</artifactId> - <configuration> - <encoding>UTF-8</encoding> - </configuration> - </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId> @@ -83,16 +85,17 @@ <!-- plugin> <artifactId>maven-jaxb2-plugin</artifactId> <groupId>org.jvnet.jaxb2.maven2</groupId> <version>0.6.0</version> - </plugin --> + </plugin + --> <plugin> <artifactId>jaxws-maven-plugin</artifactId> <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> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + <version>2.0-beta-7</version> </plugin> </plugins> </pluginManagement> @@ -105,7 +108,8 @@ <!-- descriptor>${basedir}/src/main/assemblies/assembly-online.xml</descriptor> <descriptor>${basedir}/src/main/assemblies/assembly-local.xml</descriptor> - <descriptor>${basedir}/src/main/assemblies/assembly-server.xml</descriptor --> + <descriptor>${basedir}/src/main/assemblies/assembly-server.xml</descriptor + --> </descriptors> </configuration> <!-- @@ -116,7 +120,8 @@ explicitly execute the package phase ahead of the assembly invocation, to ensure all modules have been built. <executions> <execution> <phase>package</phase> <goals> <goal>attached</goal> - </goals> </execution> </executions --> + </goals> </execution> </executions + --> </plugin> </plugins> </build> @@ -219,6 +224,16 @@ <version>3.1</version> <scope>compile</scope> </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + <version>2.5.5</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + <version>2.5.5</version> + </dependency> </dependencies> </dependencyManagement> </project>
\ No newline at end of file |