<?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>1.1.8-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>cubby</artifactId> <packaging>jar</packaging> <name>Cubby</name> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <configuration> <downloadSources>true</downloadSources> <downloadJavadocs>true</downloadJavadocs> <additionalBuildcommands> <buildCommand> <name>org.seasar.kijimuna.core.builder</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>org.seasar.kijimuna.core.validator</name> <arguments> </arguments> </buildCommand> </additionalBuildcommands> <additionalProjectnatures> <projectnature>org.seasar.kijimuna.core.nature</projectnature> </additionalProjectnatures> <classpathContainers> <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5</classpathContainer> </classpathContainers> </configuration> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>site</id> <phase>site</phase> <configuration> <tasks> <replace file="target/site/tagreference.html" token="Tag reference report." value="タグリファレンス" /> <replace file="target/site/tagreference.html" token="Tag reference sheet" value="タグリファレンス" /> <replace file="target/site/tagreference.html" token="Tag library reference for the following tag libraries:" value="次ã®ã‚¿ã‚°ãƒ©ã‚¤ãƒ–ラリã®ãƒªãƒ•ã‚¡ãƒ¬ãƒ³ã‚¹ã§ã™ã€‚" /> <replace file="target/site/tagreference.html" token="Required attributes are marked with a <b>*</b>" value="*ãŒä»˜ã属性ã¯å¿…é ˆã§ã™ã€‚" /> <replace file="target/site/tagreference.html" token="Can contain: JSP" value="ã“ã®ã‚¿ã‚°ã¯åè¦ç´ ã«ã‚¹ã‚¯ãƒªãƒ—トレットをå«ã‚€ã“ã¨ãŒã§ãã¾ã™ã€‚" /> <replace file="target/site/tagreference.html" token="Can contain: scriptless" value="ã“ã®ã‚¿ã‚°ã¯åè¦ç´ ã«ã‚¹ã‚¯ãƒªãƒ—トレットをå«ã‚€ã“ã¨ãŒã§ãã¾ã›ã‚“。" /> <replace file="target/site/tagreference.html" token="This is version " value="ã‚¿ã‚°ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³:" /> <replace file="target/site/tagreference.html" token="<h4>Example</h4>" value="<h4>例</h4>" /> <replace file="target/site/tagreference.html" token="<h4>Attributes</h4>" value="<h4>属性</h4>" /> <replace file="target/site/tagreference.html" token="<th>Name</th>" value="<th>属性å</th>" /> <replace file="target/site/tagreference.html" token="<th>Description</th>" value="<th>説明</th>" /> <replace file="target/site/tagreference.html" token="<th>Type</th>" value="<th>åž‹</th>" /> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.3.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.15</version> <scope>test</scope> <exclusions> <exclusion> <groupId>com.sun.jdmk</groupId> <artifactId>jmxtools</artifactId> </exclusion> <exclusion> <groupId>javax.jms</groupId> <artifactId>jms</artifactId> </exclusion> <exclusion> <groupId>com.sun.jmx</groupId> <artifactId>jmxri</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.3.1</version> </dependency> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-servlet_2.4_spec</artifactId> <version>1.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-jsp_2.0_spec</artifactId> <version>1.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.seasar.container</groupId> <artifactId>s2-framework</artifactId> <version>2.4.22</version> </dependency> <dependency> <groupId>org.seasar.container</groupId> <artifactId>s2-extension</artifactId> <version>2.4.22</version> </dependency> <dependency> <groupId>org.seasar.container</groupId> <artifactId>s2-tiger</artifactId> <version>2.4.22</version> </dependency> <dependency> <groupId>jdom</groupId> <artifactId>jdom</artifactId> <version>1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>rhino</groupId> <artifactId>js</artifactId> <version>1.7R1</version> <scope>test</scope> </dependency> </dependencies> </project>