利用者向け情報

開発者向け情報

[cubby]/branches/2.0.x/cubby-project/cubby-s2/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1753 - (hide annotations)
Wed Jun 3 13:54:10 2009 JST (3 years, 11 months ago) by baba
File MIME type: text/plain
File size: 4581 byte(s)
[maven-release-plugin] prepare for next development iteration
1 baba 1287 <?xml version="1.0" encoding="UTF-8"?>
2 baba 1627 <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">
3 baba 1287 <parent>
4     <artifactId>cubby-project</artifactId>
5     <groupId>org.seasar.cubby</groupId>
6 baba 1753 <version>2.0.0-beta4-SNAPSHOT</version>
7 baba 1287 </parent>
8     <modelVersion>4.0.0</modelVersion>
9     <artifactId>cubby-s2</artifactId>
10     <packaging>jar</packaging>
11     <name>Cubby Seasar2 Plugin</name>
12     <build>
13     <plugins>
14     <plugin>
15     <groupId>org.apache.maven.plugins</groupId>
16     <artifactId>maven-eclipse-plugin</artifactId>
17     <configuration>
18     <downloadSources>true</downloadSources>
19     <downloadJavadocs>true</downloadJavadocs>
20     <additionalBuildcommands>
21     <buildCommand>
22     <name>org.seasar.kijimuna.core.builder</name>
23     <arguments>
24     </arguments>
25     </buildCommand>
26     <buildCommand>
27     <name>org.seasar.kijimuna.core.validator</name>
28     <arguments>
29     </arguments>
30     </buildCommand>
31     </additionalBuildcommands>
32     <additionalProjectnatures>
33     <projectnature>org.seasar.kijimuna.core.nature</projectnature>
34     </additionalProjectnatures>
35     </configuration>
36     </plugin>
37 baba 1670 <plugin>
38     <groupId>org.jvnet</groupId>
39     <artifactId>animal-sniffer</artifactId>
40     <executions>
41     <execution>
42     <goals>
43     <goal>check</goal>
44     </goals>
45     </execution>
46     </executions>
47     </plugin>
48 baba 1287 </plugins>
49     </build>
50     <dependencies>
51     <dependency>
52     <groupId>junit</groupId>
53     <artifactId>junit</artifactId>
54 baba 1359 <version>4.5</version>
55 baba 1287 <scope>provided</scope>
56     </dependency>
57     <dependency>
58     <groupId>org.apache.geronimo.specs</groupId>
59 baba 1409 <artifactId>geronimo-servlet_2.5_spec</artifactId>
60     <version>1.2</version>
61 baba 1287 <scope>provided</scope>
62     </dependency>
63     <dependency>
64 baba 1409 <groupId>org.apache.geronimo.specs</groupId>
65     <artifactId>geronimo-jsp_2.1_spec</artifactId>
66     <version>1.0.1</version>
67     <scope>provided</scope>
68     </dependency>
69     <dependency>
70     <groupId>org.apache.geronimo.specs</groupId>
71     <artifactId>geronimo-el_1.0_spec</artifactId>
72     <version>1.0.1</version>
73     <scope>provided</scope>
74     </dependency>
75     <dependency>
76 baba 1287 <groupId>org.seasar.cubby</groupId>
77     <artifactId>cubby</artifactId>
78 baba 1753 <version>2.0.0-beta4-SNAPSHOT</version>
79 baba 1287 </dependency>
80     <dependency>
81 baba 1425 <groupId>org.seasar.cubby</groupId>
82     <artifactId>cubby-unit</artifactId>
83 baba 1753 <version>2.0.0-beta4-SNAPSHOT</version>
84 baba 1425 </dependency>
85     <dependency>
86 baba 1287 <groupId>org.seasar.container</groupId>
87     <artifactId>s2-framework</artifactId>
88 baba 1421 <version>2.4.34</version>
89 baba 1287 <exclusions>
90     <exclusion>
91     <groupId>commons-logging</groupId>
92     <artifactId>commons-logging</artifactId>
93     </exclusion>
94     <exclusion>
95     <groupId>log4j</groupId>
96     <artifactId>log4j</artifactId>
97     </exclusion>
98     </exclusions>
99     </dependency>
100     <dependency>
101     <groupId>org.seasar.container</groupId>
102     <artifactId>s2-extension</artifactId>
103 baba 1421 <version>2.4.34</version>
104 baba 1287 <exclusions>
105     <exclusion>
106     <groupId>log4j</groupId>
107     <artifactId>log4j</artifactId>
108     </exclusion>
109     </exclusions>
110     </dependency>
111     <dependency>
112     <groupId>org.seasar.container</groupId>
113     <artifactId>s2-tiger</artifactId>
114 baba 1421 <version>2.4.34</version>
115 baba 1287 <exclusions>
116     <exclusion>
117     <groupId>log4j</groupId>
118     <artifactId>log4j</artifactId>
119     </exclusion>
120     </exclusions>
121     </dependency>
122     <dependency>
123     <groupId>org.slf4j</groupId>
124     <artifactId>slf4j-api</artifactId>
125 baba 1359 <version>1.5.6</version>
126 baba 1287 </dependency>
127     <dependency>
128     <groupId>org.slf4j</groupId>
129     <artifactId>jcl-over-slf4j</artifactId>
130 baba 1359 <version>1.5.6</version>
131 baba 1287 <scope>test</scope>
132     </dependency>
133     <dependency>
134     <groupId>ch.qos.logback</groupId>
135     <artifactId>logback-core</artifactId>
136 baba 1425 <version>0.9.15</version>
137 baba 1287 <scope>test</scope>
138     </dependency>
139     <dependency>
140     <groupId>ch.qos.logback</groupId>
141     <artifactId>logback-classic</artifactId>
142 baba 1425 <version>0.9.15</version>
143 baba 1287 <scope>test</scope>
144     </dependency>
145     </dependencies>
146     </project>

Properties

Name Value
svn:mime-type text/plain

Repository Top
ViewVC Help  
ViewVC logotype
Powered by ViewVC