Develop and Download Open Source Software

Browse CVS Repository

Contents of /pal/googlegadgets/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 22:32:07 2006 UTC (17 years, 6 months ago) by shinsuke
Branch: MAIN
File MIME type: application/xml
added pom

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>googlegadgets-project</artifactId>
6 <packaging>pom</packaging>
7 <version>0.2-SNAPSHOT</version>
8 <name>Google Gadgets 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:googlegadgets</connection>
32 <developerConnection>scm:cvs:pserver:anonymous@cvs.sourceforge.jp:/cvsroot/pal:googlegadgets</developerConnection>
33 <url>http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/pal/googlegadgets</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>googlegadgets-portlet</module>
119 </modules>
120 <repositories>
121 <repository>
122 <id>maven.marevol.com</id>
123 <name>Maven2 Repository on marevol.com</name>
124 <url>http://www.marevol.com/maven2</url>
125 </repository>
126 </repositories>
127 <pluginRepositories>
128 <pluginRepository>
129 <id>people.apache.org m2-snapshot</id>
130 <url>http://people.apache.org/repo/m2-snapshot-repository</url>
131 <snapshots>
132 <enabled>true</enabled>
133 </snapshots>
134 <releases>
135 <enabled>false</enabled>
136 </releases>
137 </pluginRepository>
138 <pluginRepository>
139 <id>snapshots.repository.codehaus.org</id>
140 <url>http://snapshots.repository.codehaus.org</url>
141 <snapshots>
142 <enabled>true</enabled>
143 </snapshots>
144 <releases>
145 <enabled>false</enabled>
146 </releases>
147 </pluginRepository>
148 </pluginRepositories>
149 <reporting>
150 <plugins>
151 <plugin>
152 <artifactId>maven-project-info-reports-plugin</artifactId>
153 </plugin>
154 <!--
155 <plugin>
156 <groupId>org.codehaus.mojo</groupId>
157 <artifactId>surefire-report-maven-plugin</artifactId>
158 </plugin>
159 -->
160 <plugin>
161 <groupId>org.codehaus.mojo</groupId>
162 <artifactId>changelog-maven-plugin</artifactId>
163 </plugin>
164 <plugin>
165 <groupId>org.codehaus.mojo</groupId>
166 <artifactId>taglist-maven-plugin</artifactId>
167 <configuration>
168 <tags>
169 <tag>FIXME</tag>
170 <tag>TODO</tag>
171 <tag>XXX</tag>
172 </tags>
173 </configuration>
174 </plugin>
175 <plugin>
176 <groupId>org.codehaus.mojo</groupId>
177 <artifactId>cobertura-maven-plugin</artifactId>
178 <version>2.0-SNAPSHOT</version>
179 <!--
180 <configuration>
181 <outputDirectory>${project.build.directory}/site/cobertura</outputDirectory>
182 </configuration>
183 -->
184 </plugin>
185 <!--
186 <plugin>
187 <artifactId>maven-javadoc-plugin</artifactId>
188 </plugin>
189 <plugin>
190 <artifactId>maven-clover-plugin</artifactId>
191 </plugin>
192 <plugin>
193 <artifactId>maven-pmd-plugin</artifactId>
194 </plugin>
195 <plugin>
196 <artifactId>maven-checkstyle-plugin</artifactId>
197 </plugin>
198 -->
199 </plugins>
200 </reporting>
201 </project>

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