OSDN Git Service

ticket #27629 外部キーを名前順に生成させる
[ea2ddl/ea2ddl.git] / pom.xml
1 <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">
2         <modelVersion>4.0.0</modelVersion>
3         <groupId>jp.sourceforge.ea2ddl</groupId>
4         <artifactId>ea2ddl-parent</artifactId>
5         <version>0.0.4-SNAPSHOT</version>
6         <packaging>pom</packaging>
7
8         <name>Enterprise Architect to DDL</name>
9         <description>Enterprise Architect to DDL</description>
10         <url>http://ea2ddl.sourceforge.jp/</url>
11         <inceptionYear>2008</inceptionYear>
12         <licenses>
13                 <license>
14                         <name>The Apache Software License, Version 2.0</name>
15                         <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
16                         <distribution>repo</distribution>
17                 </license>
18         </licenses>
19         <scm>
20                 <connection>scm:git:git://git.sourceforge.jp/gitroot/ea2ddl/ea2ddl.git</connection>
21                 <developerConnection>scm:git:git@git.sourceforge.jp::/gitroot/ea2ddl/ea2ddl.git</developerConnection>
22                 <url>http://git.sourceforge.jp/view?p=ea2ddl/ea2ddl.git</url>
23         </scm>
24         <modules>
25                 <module>ea2ddl-common</module>
26                 <module>ea2ddl-dao</module>
27                 <module>ea2ddl-ddl</module>
28                 <module>ea2ddl-dist</module>
29         </modules>
30         <repositories>
31                 <repository>
32                         <id>maven.seasar.org</id>
33                         <name>The Seasar Foundation Maven2 Repository</name>
34                         <url>http://maven.seasar.org/maven2</url>
35                 </repository>
36         </repositories>
37         <build>
38                 <pluginManagement>
39                         <plugins>
40                                 <plugin>
41                                         <artifactId>maven-compiler-plugin</artifactId>
42                                         <configuration>
43                                                 <encoding>UTF-8</encoding>
44                                                 <source>1.5</source>
45                                                 <target>1.5</target>
46                                         </configuration>
47                                 </plugin>
48                                 <plugin>
49                                         <groupId>org.apache.maven.plugins</groupId>
50                                         <artifactId>maven-source-plugin</artifactId>
51                                         <executions>
52                                                 <execution>
53                                                         <phase>package</phase>
54                                                         <goals>
55                                                                 <goal>jar</goal>
56                                                         </goals>
57                                                 </execution>
58                                         </executions>
59                                 </plugin>
60                                 <plugin>
61                                         <artifactId>maven-javadoc-plugin</artifactId>
62                                         <executions>
63                                                 <execution>
64                                                         <phase>package</phase>
65                                                         <goals>
66                                                                 <goal>jar</goal>
67                                                         </goals>
68                                                 </execution>
69                                         </executions>
70                                         <configuration>
71                                                 <source>1.5</source>
72                                                 <encoding>UTF-8</encoding>
73                                                 <docencoding>UTF-8</docencoding>
74                                                 <charset>UTF-8</charset>
75                                                 <locales>ja</locales>
76                                                 <aggregate>true</aggregate>
77                                                 <additionalJOption>-J-Xmx512m</additionalJOption>
78                                                 <links>
79                                                         <link>http://java.sun.com/j2se/1.5.0/ja/docs/ja/api/</link>
80                                                         <link>http://java.sun.com/j2ee/1.4/docs/api/</link>
81                                                         <link>http://aopalliance.sourceforge.net/doc/</link>
82                                                 </links>
83                                         </configuration>
84                                 </plugin>
85                                 <plugin>
86                                         <groupId>org.apache.maven.plugins</groupId>
87                                         <artifactId>maven-surefire-plugin</artifactId>
88                                         <configuration>
89                                                 <forkMode>once</forkMode>
90                                                 <argLine>
91                                                         -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=256m
92                                                 </argLine>
93                                         </configuration>
94                                 </plugin>
95                                 <plugin>
96                                         <groupId>org.apache.maven.plugins</groupId>
97                                         <artifactId>maven-release-plugin</artifactId>
98                                         <version>2.2.2</version>
99                                         <configuration>
100                                                 <arguments>-Dmaven.test.skip</arguments>
101                                                 <autoVersionSubmodules>true</autoVersionSubmodules>
102                                                 <localCheckout>true</localCheckout>
103                                                 <preparationGoals>clean package</preparationGoals>
104                                         </configuration>
105                                 </plugin>
106                         </plugins>
107                 </pluginManagement>
108         </build>
109
110         <properties>
111                 <s2.version>2.4.30</s2.version>
112         </properties>
113
114         <dependencies>
115                 <dependency>
116                         <groupId>junit</groupId>
117                         <artifactId>junit</artifactId>
118                         <version>4.4</version>
119                         <scope>test</scope>
120                 </dependency>
121                 <dependency>
122                         <groupId>junit-addons</groupId>
123                         <artifactId>junit-addons</artifactId>
124                         <version>1.4</version>
125                         <type>jar</type>
126                         <scope>test</scope>
127                         <exclusions>
128                                 <exclusion>
129                                         <groupId>junit-addons</groupId>
130                                         <artifactId>junit-addons-runner</artifactId>
131                                 </exclusion>
132                                 <exclusion>
133                                         <groupId>xerces</groupId>
134                                         <artifactId>xercesImpl</artifactId>
135                                 </exclusion>
136                                 <exclusion>
137                                         <groupId>xerces</groupId>
138                                         <artifactId>xmlParserAPIs</artifactId>
139                                 </exclusion>
140                         </exclusions>
141                 </dependency>
142                 <dependency>
143                         <groupId>log4j</groupId>
144                         <artifactId>log4j</artifactId>
145                         <version>1.2.14</version>
146                 </dependency>
147                 <dependency>
148                         <groupId>commons-logging</groupId>
149                         <artifactId>commons-logging</artifactId>
150                         <version>1.1</version>
151                         <exclusions>
152                                 <exclusion>
153                                         <artifactId>avalon-framework</artifactId>
154                                         <groupId>avalon-framework</groupId>
155                                 </exclusion>
156                                 <exclusion>
157                                         <artifactId>logkit</artifactId>
158                                         <groupId>logkit</groupId>
159                                 </exclusion>
160                                 <exclusion>
161                                         <artifactId>log4j</artifactId>
162                                         <groupId>log4j</groupId>
163                                 </exclusion>
164                                 <exclusion>
165                                         <artifactId>servlet-api</artifactId>
166                                         <groupId>javax.servlet</groupId>
167                                 </exclusion>
168                         </exclusions>
169                 </dependency>
170                 <dependency>
171                         <groupId>commons-lang</groupId>
172                         <artifactId>commons-lang</artifactId>
173                         <version>2.3</version>
174                 </dependency>
175                 <dependency>
176                         <groupId>commons-collections</groupId>
177                         <artifactId>commons-collections</artifactId>
178                         <version>3.2</version>
179                 </dependency>
180         </dependencies>
181
182         <dependencyManagement>
183                 <dependencies>
184                         <dependency>
185                                 <groupId>org.seasar.container</groupId>
186                                 <artifactId>s2-extension</artifactId>
187                                 <version>${s2.version}</version>
188                                 <type>jar</type>
189                                 <exclusions>
190                                         <exclusion>
191                                                 <artifactId>poi</artifactId>
192                                                 <groupId>poi</groupId>
193                                         </exclusion>
194                                 </exclusions>
195                         </dependency>
196                         <dependency>
197                                 <groupId>org.seasar.container</groupId>
198                                 <artifactId>s2-tiger</artifactId>
199                                 <version>${s2.version}</version>
200                                 <type>jar</type>
201                                 <exclusions>
202                                         <exclusion>
203                                                 <artifactId>poi</artifactId>
204                                                 <groupId>poi</groupId>
205                                         </exclusion>
206                                 </exclusions>
207                         </dependency>
208
209                         <dependency>
210                                 <groupId>org.apache.geronimo.specs</groupId>
211                                 <artifactId>geronimo-j2ee_1.4_spec</artifactId>
212                                 <version>1.0</version>
213                                 <type>jar</type>
214                                 <scope>provided</scope>
215                         </dependency>
216                         <dependency>
217                                 <groupId>org.apache.geronimo.specs</groupId>
218                                 <artifactId>geronimo-ejb_3.0_spec</artifactId>
219                                 <version>1.0</version>
220                                 <type>jar</type>
221                                 <scope>provided</scope>
222                         </dependency>
223                         <dependency>
224                                 <groupId>org.apache.geronimo.specs</groupId>
225                                 <artifactId>geronimo-jpa_3.0_spec</artifactId>
226                                 <version>1.0</version>
227                                 <type>jar</type>
228                                 <scope>provided</scope>
229                         </dependency>
230                         <dependency>
231                                 <groupId>org.apache.geronimo.specs</groupId>
232                                 <artifactId>geronimo-jta_1.1_spec</artifactId>
233                                 <version>1.0</version>
234                                 <type>jar</type>
235                                 <scope>provided</scope>
236                         </dependency>
237                         <dependency>
238                                 <groupId>org.apache.poi</groupId>
239                                 <artifactId>poi</artifactId>
240                                 <version>3.0.2-FINAL</version>
241                         </dependency>
242                         <dependency>
243                                 <groupId>org.seasar.dbflute</groupId>
244                                 <artifactId>dbflute</artifactId>
245                                 <version>0.8.1</version>
246                         </dependency>
247                         <dependency>
248                                 <groupId>org.apache.ant</groupId>
249                                 <artifactId>ant</artifactId>
250                                 <version>1.7.1</version>
251                         </dependency>
252                         <dependency>
253                                 <groupId>org.freemarker</groupId>
254                                 <artifactId>freemarker</artifactId>
255                                 <version>2.3.13</version>
256                         </dependency>
257                         <dependency>
258                                 <groupId>org.seasar.dbflute</groupId>
259                                 <artifactId>dbflute-runtime</artifactId>
260                                 <version>0.9.3</version>
261                         </dependency>
262                 </dependencies>
263         </dependencyManagement>
264
265 </project>