1 |
<?xml version="1.0" encoding="UTF-8"?> |
---|
2 |
<project |
---|
3 |
xmlns="http://maven.apache.org/POM/4.0.0" |
---|
4 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
5 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" |
---|
6 |
> |
---|
7 |
<modelVersion>4.0.0</modelVersion> |
---|
8 |
<prerequisites> |
---|
9 |
<maven>2.0.4</maven> |
---|
10 |
</prerequisites> |
---|
11 |
|
---|
12 |
<groupId>org.intra-mart.jssp</groupId> |
---|
13 |
<artifactId>im-jssp-projects</artifactId> |
---|
14 |
<version>0.1.3</version> |
---|
15 |
<packaging>pom</packaging> |
---|
16 |
|
---|
17 |
<modules> |
---|
18 |
<module>im-jssp</module> |
---|
19 |
|
---|
20 |
<module>im-jssp-sample</module> |
---|
21 |
</modules> |
---|
22 |
|
---|
23 |
<name>${artifactId}</name> |
---|
24 |
<url>http://oss.intra-mart.org/projects/im-jssp/maven/</url> |
---|
25 |
<inceptionYear>2006</inceptionYear> |
---|
26 |
|
---|
27 |
<organization> |
---|
28 |
<name>OPEN INTRA-MART</name> |
---|
29 |
<url>http://oss.intra-mart.org/</url> |
---|
30 |
</organization> |
---|
31 |
|
---|
32 |
<repositories> |
---|
33 |
<repository> |
---|
34 |
<id>maven.rectang.com</id> |
---|
35 |
<url>http://maven.rectang.com/repository</url> |
---|
36 |
</repository> |
---|
37 |
</repositories> |
---|
38 |
|
---|
39 |
<build> |
---|
40 |
<plugins> |
---|
41 |
<plugin> |
---|
42 |
<groupId>org.apache.maven.plugins</groupId> |
---|
43 |
<artifactId>maven-compiler-plugin</artifactId> |
---|
44 |
<configuration> |
---|
45 |
<encoding>UTF-8</encoding> |
---|
46 |
<source>1.5</source> |
---|
47 |
<target>1.5</target> |
---|
48 |
</configuration> |
---|
49 |
</plugin> |
---|
50 |
<plugin> |
---|
51 |
<groupId>org.apache.maven.plugins</groupId> |
---|
52 |
<artifactId>maven-assembly-plugin</artifactId> |
---|
53 |
<inherited>true</inherited> |
---|
54 |
<configuration> |
---|
55 |
<descriptors> |
---|
56 |
<descriptor>src/main/assembly/src.xml</descriptor> |
---|
57 |
</descriptors> |
---|
58 |
</configuration> |
---|
59 |
</plugin> |
---|
60 |
<plugin> |
---|
61 |
<groupId>org.apache.maven.plugins</groupId> |
---|
62 |
<artifactId>maven-source-plugin</artifactId> |
---|
63 |
<executions> |
---|
64 |
<execution> |
---|
65 |
<phase>package</phase> |
---|
66 |
<goals> |
---|
67 |
<goal>jar</goal> |
---|
68 |
<goal>test-jar</goal> |
---|
69 |
</goals> |
---|
70 |
</execution> |
---|
71 |
</executions> |
---|
72 |
</plugin> |
---|
73 |
</plugins> |
---|
74 |
</build> |
---|
75 |
|
---|
76 |
<reporting> |
---|
77 |
<plugins> |
---|
78 |
<plugin> |
---|
79 |
<groupId>org.apache.maven.plugins</groupId> |
---|
80 |
<artifactId>maven-site-plugin</artifactId> |
---|
81 |
<configuration> |
---|
82 |
<locales>ja</locales> |
---|
83 |
<outputEncoding>UTF-8</outputEncoding> |
---|
84 |
</configuration> |
---|
85 |
</plugin> |
---|
86 |
<plugin> |
---|
87 |
<groupId>org.codehaus.mojo</groupId> |
---|
88 |
<artifactId>surefire-report-maven-plugin</artifactId> |
---|
89 |
</plugin> |
---|
90 |
<plugin> |
---|
91 |
<groupId>org.apache.maven.plugins</groupId> |
---|
92 |
<artifactId>maven-jxr-plugin</artifactId> |
---|
93 |
<configuration> |
---|
94 |
<inputEncoding>UTF-8</inputEncoding> |
---|
95 |
<outputEncoding>UTF-8</outputEncoding> |
---|
96 |
</configuration> |
---|
97 |
</plugin> |
---|
98 |
<plugin> |
---|
99 |
<groupId>org.apache.maven.plugins</groupId> |
---|
100 |
<artifactId>maven-javadoc-plugin</artifactId> |
---|
101 |
<configuration> |
---|
102 |
<encoding>UTF-8</encoding> |
---|
103 |
<charset>UTF-8</charset> |
---|
104 |
<links> |
---|
105 |
<link>http://java.sun.com/j2se/1.5.0/ja/docs/ja/api</link> |
---|
106 |
<link>http://java.sun.com/j2ee/1.4/docs/api</link> |
---|
107 |
<link>http://www.mozilla.org/rhino/apidocs</link> |
---|
108 |
</links> |
---|
109 |
</configuration> |
---|
110 |
</plugin> |
---|
111 |
</plugins> |
---|
112 |
</reporting> |
---|
113 |
|
---|
114 |
<licenses> |
---|
115 |
<license> |
---|
116 |
<name>The Apache Software License, Version 2.0</name> |
---|
117 |
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
---|
118 |
<distribution>repo</distribution> |
---|
119 |
</license> |
---|
120 |
</licenses> |
---|
121 |
|
---|
122 |
<issueManagement> |
---|
123 |
<system>trac</system> |
---|
124 |
<url><![CDATA[http://oss.intra-mart.org/projects/im-jssp/report/]]></url> |
---|
125 |
</issueManagement> |
---|
126 |
|
---|
127 |
<scm> |
---|
128 |
<connection>scm:http://oss.intra-mart.org/projects/im-jssp/svn/trunk/</connection> |
---|
129 |
<developerConnection>scm:http://oss.intra-mart.org/projects/im-jssp/svn/trunk/</developerConnection> |
---|
130 |
<url><![CDATA[http://oss.intra-mart.org/projects/im-jssp/browser/trunk/]]></url> |
---|
131 |
</scm> |
---|
132 |
|
---|
133 |
<distributionManagement> |
---|
134 |
<repository> |
---|
135 |
<id>oss.intra-mart.org</id> |
---|
136 |
<name>OPEN INTRA-MART Maven2 Repository</name> |
---|
137 |
<url>file:///usr/local/store/maven2/repository</url> |
---|
138 |
</repository> |
---|
139 |
<site> |
---|
140 |
<id>oss.intra-mart.org</id> |
---|
141 |
<name>Maven2 Site</name> |
---|
142 |
<url>file:///usr/local/store/maven2/im-jssp</url> |
---|
143 |
</site> |
---|
144 |
</distributionManagement> |
---|
145 |
|
---|
146 |
</project> |
---|