webbasics2/pom.xml

73 lines
2.2 KiB
XML
Raw Permalink Normal View History

<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.lusiardi</groupId>
<artifactId>webbasics2</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>Java Webprogrammierung mit Spring und Maven (Teil 2)</name>
<prerequisites>
<maven>3.0</maven>
</prerequisites>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>3.2.3.RELEASE</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
[INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building Java Webprogrammierung mit Spring und Maven (Teil 2) 1.0-SNAPSHOT [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- versions-maven-plugin:2.1:display-dependency-updates (default-cli) @ webbasics2 --- [INFO] The following dependencies in Dependencies have newer versions: [INFO] cglib:cglib ............................................. 2.2.2 -> 3.0 [INFO] mysql:mysql-connector-java .......................... 5.1.21 -> 5.1.25 [INFO] org.hibernate:hibernate-entitymanager ..... 4.1.6.Final -> 4.3.0.Beta3 [INFO] org.springframework:spring-orm ........ 3.1.2.RELEASE -> 3.2.3.RELEASE [INFO] [INFO] [INFO] --- versions-maven-plugin:2.1:display-plugin-updates (default-cli) @ webbasics2 --- [INFO] [INFO] The following plugin updates are available: [INFO] maven-compiler-plugin .................................. 2.3.2 -> 3.1 [INFO] [WARNING] The following plugins do not have their version specified: [WARNING] maven-clean-plugin .......................... (from super-pom) 2.5 [WARNING] maven-deploy-plugin ......................... (from super-pom) 2.7 [WARNING] maven-install-plugin ........................ (from super-pom) 2.4 [WARNING] maven-resources-plugin ...................... (from super-pom) 2.6 [WARNING] maven-site-plugin ........................... (from super-pom) 3.3 [WARNING] maven-surefire-plugin ...................... (from super-pom) 2.15 [WARNING] maven-war-plugin ............................ (from super-pom) 2.4 [INFO] [INFO] Project defines minimum Maven version as: 3.0 [INFO] Plugins require minimum Maven version of: 2.2.1 [INFO] Note: the super-pom from Maven 3.0.4 defines some of the plugin [INFO] versions and may be influencing the plugins required minimum Maven [INFO] version. [INFO] [INFO] No plugins require a newer version of Maven than specified by the pom. [INFO] [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 5.209s [INFO] Finished at: Sun Jul 28 10:13:57 CEST 2013 [INFO] Final Memory: 10M/133M [INFO] ------------------------------------------------------------------------
2013-07-28 10:15:43 +02:00
<version>3.2.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>4.2.3.Final</version>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
[INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building Java Webprogrammierung mit Spring und Maven (Teil 2) 1.0-SNAPSHOT [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- versions-maven-plugin:2.1:display-dependency-updates (default-cli) @ webbasics2 --- [INFO] The following dependencies in Dependencies have newer versions: [INFO] cglib:cglib ............................................. 2.2.2 -> 3.0 [INFO] mysql:mysql-connector-java .......................... 5.1.21 -> 5.1.25 [INFO] org.hibernate:hibernate-entitymanager ..... 4.1.6.Final -> 4.3.0.Beta3 [INFO] org.springframework:spring-orm ........ 3.1.2.RELEASE -> 3.2.3.RELEASE [INFO] [INFO] [INFO] --- versions-maven-plugin:2.1:display-plugin-updates (default-cli) @ webbasics2 --- [INFO] [INFO] The following plugin updates are available: [INFO] maven-compiler-plugin .................................. 2.3.2 -> 3.1 [INFO] [WARNING] The following plugins do not have their version specified: [WARNING] maven-clean-plugin .......................... (from super-pom) 2.5 [WARNING] maven-deploy-plugin ......................... (from super-pom) 2.7 [WARNING] maven-install-plugin ........................ (from super-pom) 2.4 [WARNING] maven-resources-plugin ...................... (from super-pom) 2.6 [WARNING] maven-site-plugin ........................... (from super-pom) 3.3 [WARNING] maven-surefire-plugin ...................... (from super-pom) 2.15 [WARNING] maven-war-plugin ............................ (from super-pom) 2.4 [INFO] [INFO] Project defines minimum Maven version as: 3.0 [INFO] Plugins require minimum Maven version of: 2.2.1 [INFO] Note: the super-pom from Maven 3.0.4 defines some of the plugin [INFO] versions and may be influencing the plugins required minimum Maven [INFO] version. [INFO] [INFO] No plugins require a newer version of Maven than specified by the pom. [INFO] [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 5.209s [INFO] Finished at: Sun Jul 28 10:13:57 CEST 2013 [INFO] Final Memory: 10M/133M [INFO] ------------------------------------------------------------------------
2013-07-28 10:15:43 +02:00
<version>3.0</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
[INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building Java Webprogrammierung mit Spring und Maven (Teil 2) 1.0-SNAPSHOT [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- versions-maven-plugin:2.1:display-dependency-updates (default-cli) @ webbasics2 --- [INFO] The following dependencies in Dependencies have newer versions: [INFO] cglib:cglib ............................................. 2.2.2 -> 3.0 [INFO] mysql:mysql-connector-java .......................... 5.1.21 -> 5.1.25 [INFO] org.hibernate:hibernate-entitymanager ..... 4.1.6.Final -> 4.3.0.Beta3 [INFO] org.springframework:spring-orm ........ 3.1.2.RELEASE -> 3.2.3.RELEASE [INFO] [INFO] [INFO] --- versions-maven-plugin:2.1:display-plugin-updates (default-cli) @ webbasics2 --- [INFO] [INFO] The following plugin updates are available: [INFO] maven-compiler-plugin .................................. 2.3.2 -> 3.1 [INFO] [WARNING] The following plugins do not have their version specified: [WARNING] maven-clean-plugin .......................... (from super-pom) 2.5 [WARNING] maven-deploy-plugin ......................... (from super-pom) 2.7 [WARNING] maven-install-plugin ........................ (from super-pom) 2.4 [WARNING] maven-resources-plugin ...................... (from super-pom) 2.6 [WARNING] maven-site-plugin ........................... (from super-pom) 3.3 [WARNING] maven-surefire-plugin ...................... (from super-pom) 2.15 [WARNING] maven-war-plugin ............................ (from super-pom) 2.4 [INFO] [INFO] Project defines minimum Maven version as: 3.0 [INFO] Plugins require minimum Maven version of: 2.2.1 [INFO] Note: the super-pom from Maven 3.0.4 defines some of the plugin [INFO] versions and may be influencing the plugins required minimum Maven [INFO] version. [INFO] [INFO] No plugins require a newer version of Maven than specified by the pom. [INFO] [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 5.209s [INFO] Finished at: Sun Jul 28 10:13:57 CEST 2013 [INFO] Final Memory: 10M/133M [INFO] ------------------------------------------------------------------------
2013-07-28 10:15:43 +02:00
<version>5.1.25</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
</project>