<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>cubby-project</artifactId> <groupId>org.seasar.cubby</groupId> <version>2.0.10-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>cubby-guice-examples</artifactId> <packaging>war</packaging> <name>Cubby Guice Examples</name> <build> <finalName>cubby-guice-examples</finalName> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-eclipse-plugin</artifactId> <configuration> <wtpversion>2.0</wtpversion> <downloadSources>true</downloadSources> <downloadJavadocs>true</downloadJavadocs> <useProjectReferences>false</useProjectReferences> <additionalConfig> <file> <name>.settings/org.eclipse.core.resources.prefs</name> <content> <![CDATA[ eclipse.preferences.version=1 encoding/<project>=UTF-8 ]]> </content> </file> <file> <name>.settings/org.eclipse.core.runtime.prefs</name> <content> <![CDATA[ eclipse.preferences.version=1 line.separator=\n ]]> </content> </file> </additionalConfig> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>tomcat-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> </plugin> </plugins> </build> <repositories> <repository> <id>maven.seasar.org</id> <name>The Seasar Foundation Maven2 Repository</name> <url>http://maven.seasar.org/maven2</url> </repository> </repositories> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.7</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>org.seasar.cubby</groupId> <artifactId>cubby</artifactId> <version>2.0.10-SNAPSHOT</version> </dependency> <dependency> <groupId>org.seasar.cubby</groupId> <artifactId>cubby-unit</artifactId> <version>2.0.10-SNAPSHOT</version> <scope>test</scope> </dependency> <dependency> <groupId>org.seasar.cubby</groupId> <artifactId>cubby-guice</artifactId> <version>2.0.10-SNAPSHOT</version> </dependency> <dependency> <groupId>org.seasar.cubby</groupId> <artifactId>cubby-admin</artifactId> <version>2.0.10-SNAPSHOT</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>com.google.inject.extensions</groupId> <artifactId>guice-servlet</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>aopalliance</groupId> <artifactId>aopalliance</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.5.6</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>1.5.6</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>0.9.15</version> <scope>runtime</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>0.9.15</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>2.5.6.SEC01</version> <scope>test</scope> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>2.5.6.SEC01</version> <scope>test</scope> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <profiles> <profile> <id>development</id> <activation> <activeByDefault>true</activeByDefault> </activation> </profile> <profile> <id>production</id> <activation> <activeByDefault>false</activeByDefault> </activation> <properties> <maven.test.skip>true</maven.test.skip> </properties> <build> <resources> <resource> <directory>src/production/resources</directory> </resource> <resource> <directory>src/main/resources</directory> </resource> </resources> </build> </profile> <profile> <id>tomcat6</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.codehaus.cargo</groupId> <artifactId>cargo-maven2-plugin</artifactId> <configuration> <container> <containerId>tomcat6x</containerId> <!-- <type>embedded</type> --> <!-- for use -Dtomcat.home=c:\usr\local... <type>installed</type> <home>${tomcat.home}</home> --> <zipUrlInstaller> <url> http://archive.apache.org/dist/tomcat/tomcat-6/v6.0.18/bin/apache-tomcat-6.0.18.zip </url> <installDir>${project.build.directory}</installDir> </zipUrlInstaller> <output> ${project.build.directory}/tomcat6x.log </output> <log>${project.build.directory}/cargo.log</log> </container> </configuration> <executions> <!-- <execution> <id>start-container</id> <phase>pre-integration-test</phase> <goals> <goal>start</goal> </goals> <configuration> <wait>false</wait> </configuration> </execution> <execution> <id>stop-container</id> <phase>post-integration-test</phase> <goals> <goal>stop</goal> </goals> </execution> --> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>