Develop and Download Open Source Software

Browse CVS Repository

Annotation of /pal/helloworld/pom.xml

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


Revision 1.3 - (hide annotations) (download) (as text)
Sat Nov 11 21:18:51 2006 UTC (17 years, 5 months ago) by shinsuke
Branch: MAIN
CVS Tags: RELEASE-1_1, HEAD
Changes since 1.2: +1 -1 lines
File MIME type: application/xml
1.1 release version

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

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