Develop and Download Open Source Software

Browse CVS Repository

Contents of /pal/webparts/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Sat Oct 7 01:19:35 2006 UTC (17 years, 6 months ago) by shinsuke
Branch: MAIN
Branch point for: shinsuke
File MIME type: application/xml
Initial revision

1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>jp.sf.pal</groupId>
5 <artifactId>webparts-project</artifactId>
6 <packaging>pom</packaging>
7 <version>0.1-SNAPSHOT</version>
8 <name>Web Parts Project</name>
9 <description></description>
10 <url>http://pal.sourceforge.jp/</url>
11 <inceptionYear>2005</inceptionYear>
12 <developers>
13 <developer>
14 <id>shinsuke</id>
15 <name>Shinsuke Sugaya</name>
16 <email>shinsuke_at_yahoo.co.jp</email>
17 <url>http://d.hatena.ne.jp/shinsuke_sugaya/</url>
18 <organization/>
19 <organizationUrl/>
20 <timezone>+9</timezone>
21 </developer>
22 </developers>
23 <licenses>
24 <license>
25 <name>The Apache Software License, Version 2.0</name>
26 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
27 <distribution>repo</distribution>
28 </license>
29 </licenses>
30 <scm>
31 <connection>scm:cvs:pserver:anonymous@cvs.sourceforge.jp:/cvsroot/pal:webparts</connection>
32 <developerConnection>scm:cvs:pserver:anonymous@cvs.sourceforge.jp:/cvsroot/pal:webparts</developerConnection>
33 <url>http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/pal/webparts</url>
34 </scm>
35 <organization>
36 <name>Portal Application Laboratory</name>
37 <url>http://pal.sourceforge.jp/</url>
38 </organization>
39 <build>
40 <defaultGoal>validate</defaultGoal>
41 <pluginManagement>
42 <plugins>
43 <plugin>
44 <artifactId>maven-compiler-plugin</artifactId>
45 <configuration>
46 <source>1.4</source>
47 <target>1.4</target>
48 <encoding>UTF-8</encoding>
49 </configuration>
50 </plugin>
51 <plugin>
52 <artifactId>maven-deploy-plugin</artifactId>
53 <configuration>
54 <updateReleaseInfo>true</updateReleaseInfo>
55 </configuration>
56 </plugin>
57 <!--
58 <plugin>
59 <artifactId>maven-site-plugin</artifactId>
60 <configuration>
61 <outputEncodinf>UTF-8</outputEncodinf>
62 </configuration>
63 </plugin>
64 <plugin>
65 <artifactId>maven-surefire-plugin</artifactId>
66 <configuration>
67 <forkMode>none</forkMode>
68 </configuration>
69 </plugin>
70 -->
71 <plugin>
72 <groupId>org.codehaus.mojo</groupId>
73 <artifactId>cobertura-maven-plugin</artifactId>
74 <version>2.0-SNAPSHOT</version>
75 <executions>
76 <execution>
77 <goals>
78 <goal>clean</goal>
79 </goals>
80 </execution>
81 </executions>
82 </plugin>
83 </plugins>
84 </pluginManagement>
85 <plugins>
86 <plugin>
87 <artifactId>maven-source-plugin</artifactId>
88 <executions>
89 <execution>
90 <id>source-jar</id>
91 <phase>package</phase>
92 <goals>
93 <goal>jar</goal>
94 </goals>
95 </execution>
96 </executions>
97 </plugin>
98 <!--
99 <plugin>
100 <artifactId>maven-javadoc-plugin</artifactId>
101 <executions>
102 <execution>
103 <id>javadoc-jar</id>
104 <phase>package</phase>
105 <goals>
106 <goal>jar</goal>
107 </goals>
108 </execution>
109 </executions>
110 <configuration>
111 <charset>UTF-8</charset>
112 </configuration>
113 </plugin>
114 -->
115 </plugins>
116 </build>
117 <modules>
118 <module>webparts-core</module>
119 <module>webparts-portlet</module>
120 </modules>
121 <pluginRepositories>
122 <pluginRepository>
123 <id>people.apache.org m2-snapshot</id>
124 <url>http://people.apache.org/repo/m2-snapshot-repository</url>
125 <snapshots>
126 <enabled>true</enabled>
127 </snapshots>
128 <releases>
129 <enabled>false</enabled>
130 </releases>
131 </pluginRepository>
132 <pluginRepository>
133 <id>snapshots.repository.codehaus.org</id>
134 <url>http://snapshots.repository.codehaus.org</url>
135 <snapshots>
136 <enabled>true</enabled>
137 </snapshots>
138 <releases>
139 <enabled>false</enabled>
140 </releases>
141 </pluginRepository>
142 </pluginRepositories>
143 <reporting>
144 <plugins>
145 <plugin>
146 <artifactId>maven-project-info-reports-plugin</artifactId>
147 </plugin>
148 <!--
149 <plugin>
150 <groupId>org.codehaus.mojo</groupId>
151 <artifactId>surefire-report-maven-plugin</artifactId>
152 </plugin>
153 -->
154 <plugin>
155 <groupId>org.codehaus.mojo</groupId>
156 <artifactId>changelog-maven-plugin</artifactId>
157 </plugin>
158 <plugin>
159 <groupId>org.codehaus.mojo</groupId>
160 <artifactId>taglist-maven-plugin</artifactId>
161 <configuration>
162 <tags>
163 <tag>FIXME</tag>
164 <tag>TODO</tag>
165 <tag>XXX</tag>
166 </tags>
167 </configuration>
168 </plugin>
169 <plugin>
170 <groupId>org.codehaus.mojo</groupId>
171 <artifactId>cobertura-maven-plugin</artifactId>
172 <version>2.0-SNAPSHOT</version>
173 <!--
174 <configuration>
175 <outputDirectory>${project.build.directory}/site/cobertura</outputDirectory>
176 </configuration>
177 -->
178 </plugin>
179 <!--
180 <plugin>
181 <artifactId>maven-javadoc-plugin</artifactId>
182 </plugin>
183 <plugin>
184 <artifactId>maven-clover-plugin</artifactId>
185 </plugin>
186 <plugin>
187 <artifactId>maven-pmd-plugin</artifactId>
188 </plugin>
189 <plugin>
190 <artifactId>maven-checkstyle-plugin</artifactId>
191 </plugin>
192 -->
193 </plugins>
194 </reporting>
195 </project>

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26