120 lines
3.5 KiB
Diff
120 lines
3.5 KiB
Diff
--- pom.xml 2012-08-04 17:05:46.000000000 +0200
|
|
+++ pom.xml-gil 2013-09-03 05:11:08.721322431 +0200
|
|
@@ -37,28 +37,104 @@
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
- <groupId>javax.servlet</groupId>
|
|
- <artifactId>servlet-api</artifactId>
|
|
- <version>[2.4,)</version>
|
|
+ <groupId>org.apache.commons</groupId>
|
|
+ <artifactId>commons-logging</artifactId>
|
|
+ <version>1.1.2</version>
|
|
+ </dependency>
|
|
+ <dependency>
|
|
+ <groupId>org.apache.tomcat</groupId>
|
|
+ <artifactId>tomcat-servlet-api</artifactId>
|
|
+ <version>7.0.42</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
- <artifactId>spring</artifactId>
|
|
- <version>[2.5,3)</version>
|
|
+ <artifactId>spring-beans</artifactId>
|
|
+ <version>3.1.1.RELEASE</version>
|
|
+ <optional>true</optional>
|
|
+ </dependency>
|
|
+ <dependency>
|
|
+ <groupId>org.springframework</groupId>
|
|
+ <artifactId>spring-context</artifactId>
|
|
+ <version>3.1.1.RELEASE</version>
|
|
+ <optional>true</optional>
|
|
+ </dependency>
|
|
+ <dependency>
|
|
+ <groupId>org.springframework</groupId>
|
|
+ <artifactId>spring-core</artifactId>
|
|
+ <version>3.1.1.RELEASE</version>
|
|
+ <optional>true</optional>
|
|
+ </dependency>
|
|
+ <dependency>
|
|
+ <groupId>org.springframework</groupId>
|
|
+ <artifactId>spring-web</artifactId>
|
|
+ <version>3.1.1.RELEASE</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
- <groupId>com.google.inject</groupId>
|
|
- <artifactId>guice</artifactId>
|
|
- <version>[2.0,)</version>
|
|
+ <groupId>org.sonatype.sisu</groupId>
|
|
+ <artifactId>sisu-guice</artifactId>
|
|
+ <version>3.1.3</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
- <groupId>org.seasar.container</groupId>
|
|
- <artifactId>s2-framework</artifactId>
|
|
- <version>[2.4,2.5)</version>
|
|
+ <groupId>org.sonatype.sisu.inject</groupId>
|
|
+ <artifactId>guice-servlet</artifactId>
|
|
+ <version>3.1.3</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
</dependencies>
|
|
+ <properties>
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
+ </properties>
|
|
+ <build>
|
|
+
|
|
+ <directory>target</directory>
|
|
+ <sourceDirectory>src/java</sourceDirectory>
|
|
+ <outputDirectory>target/classes</outputDirectory>
|
|
+ <resources>
|
|
+ <resource>
|
|
+ <directory>src/java</directory>
|
|
+ <excludes>
|
|
+ <exclude>**/*.java</exclude>
|
|
+ </excludes>
|
|
+ </resource>
|
|
+ </resources>
|
|
+
|
|
+ <plugins>
|
|
+ <plugin>
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
+ <version>3.0</version>
|
|
+ <executions>
|
|
+ <execution>
|
|
+ <id>default-compile</id>
|
|
+ <phase>compile</phase>
|
|
+ <configuration>
|
|
+ <excludes>
|
|
+ <exclude>**/S2Container.*</exclude>
|
|
+ </excludes>
|
|
+ </configuration>
|
|
+ <goals>
|
|
+ <goal>compile</goal>
|
|
+ </goals>
|
|
+ </execution>
|
|
+ </executions>
|
|
+ <configuration>
|
|
+ <source>1.6</source>
|
|
+ <target>1.6</target>
|
|
+ </configuration>
|
|
+ </plugin>
|
|
+ <plugin>
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
+ <artifactId>maven-javadoc-plugin</artifactId>
|
|
+ <version>2.9.1</version>
|
|
+ <configuration>
|
|
+ <doctitle>${project.name} ${project.version}</doctitle>
|
|
+ <windowtitle>Copyright © 2007 Hidekatsu Izuno. All rights reserved</windowtitle>
|
|
+ </configuration>
|
|
+ </plugin>
|
|
+ </plugins>
|
|
+ </build>
|
|
+
|
|
</project>
|
|
\ Manca newline alla fine del file
|