Develop and Download Open Source Software

Browse CVS Repository

Contents of /pal/teeda-ajax-portlet/pom.xml

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


Revision 1.2 - (show annotations) (download) (as text)
Tue Sep 26 09:20:15 2006 UTC (17 years, 6 months ago) by karma
Branch: MAIN
Changes since 1.1: +2 -2 lines
File MIME type: application/xml
change dependency (s2 2.4.0-rc-2-SNAPSHOT -> s2 2.4.0-rc-2)

1 <?xml version="1.0"?><project>
2 <modelVersion>4.0.0</modelVersion>
3 <groupId>jp.sf.pal</groupId>
4 <artifactId>teeda-ajax-portlet</artifactId>
5 <packaging>war</packaging>
6 <name>Ajax Portlet</name>
7 <version>0.1</version>
8 <description>Portlet example for using teeda-ajax</description>
9 <url>http://sourceforge.jp/projects/pal/</url>
10 <mailingLists>
11 <mailingList>
12 <name>CVS Notification List</name>
13 <subscribe>http://lists.sourceforge.jp/mailman/listinfo/pal-cvs</subscribe>
14 <unsubscribe>http://lists.sourceforge.jp/mailman/listinfo/pal-cvs</unsubscribe>
15 <archive>http://lists.sourceforge.jp/mailman/archives/pal-cvs/</archive>
16 </mailingList>
17 </mailingLists>
18 <developers>
19 <developer>
20 <id>karma</id>
21 <name>KATOH Yasufumi</name>
22 <email>karma@users.sourceforge.jp</email>
23 <roles>
24 <role>Java Developer</role>
25 </roles>
26 <timezone>+9</timezone>
27 </developer>
28 </developers>
29 <scm>
30 <connection>scm:cvs:pserver:anonymous@cvs.sourceforge.jp:/cvsroot/pal:teeda-ajax-portlet</connection>
31 <url>http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/pal/teeda-ajax-portlet/</url>
32 </scm>
33 <organization>
34 <name>Portal Application Laboratory</name>
35 <url>http://sourceforge.jp/projects/pal/</url>
36 </organization>
37 <build>
38 <sourceDirectory>src/main/java</sourceDirectory>
39 <testSourceDirectory>src/test/java</testSourceDirectory>
40 <finalName>teeda-ajax-portlet</finalName>
41 </build>
42 <repositories>
43 <repository>
44 <id>maven.seasar.org</id>
45 <name>The Seasar Foundation Maven2 Repository</name>
46 <url>http://maven.seasar.org/maven2</url>
47 </repository>
48 <repository>
49 <id>apache-repo</id>
50 <name>apache-repo</name>
51 <url>http://myfaces.zones.apache.org/dist/maven-repository</url>
52 </repository>
53 </repositories>
54 <dependencies>
55 <dependency>
56 <groupId>junit</groupId>
57 <artifactId>junit</artifactId>
58 <version>3.8.1</version>
59 <scope>test</scope>
60 </dependency>
61
62 <dependency>
63 <groupId>javax.servlet</groupId>
64 <artifactId>servlet-api</artifactId>
65 <version>2.3</version>
66 <scope>provided</scope>
67 </dependency>
68 <dependency>
69 <groupId>jstl</groupId>
70 <artifactId>jstl</artifactId>
71 <version>1.1.2</version>
72 </dependency>
73 <dependency>
74 <groupId>taglibs</groupId>
75 <artifactId>standard</artifactId>
76 <version>1.1.2</version>
77 </dependency>
78
79 <dependency>
80 <groupId>org.seasar.container</groupId>
81 <artifactId>s2-framework</artifactId>
82 <version>2.4.0-rc-2</version>
83 </dependency>
84 <dependency>
85 <groupId>org.seasar.container</groupId>
86 <artifactId>s2-extension</artifactId>
87 <version>2.4.0-rc-2</version>
88 </dependency>
89 <dependency>
90 <groupId>org.seasar.teeda</groupId>
91 <artifactId>teeda-core</artifactId>
92 <version>1.0-beta-6-SNAPSHOT</version>
93 </dependency>
94
95 <dependency>
96 <groupId>portlet-api</groupId>
97 <artifactId>portlet-api</artifactId>
98 <version>1.0</version>
99 <scope>provided</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.seasar.portlet</groupId>
103 <artifactId>s2-portlet</artifactId>
104 <version>1.0.3</version>
105 </dependency>
106 <dependency>
107 <groupId>org.seasar.portlet</groupId>
108 <artifactId>s2-portlet-extension</artifactId>
109 <version>1.0.3</version>
110 </dependency>
111 <dependency>
112 <groupId>org.apache.portals.bridges</groupId>
113 <artifactId>portals-bridges-common</artifactId>
114 <version>1.0</version>
115 </dependency>
116 <dependency>
117 <groupId>org.apache.portals.bridges</groupId>
118 <artifactId>portals-bridges-portletfilter</artifactId>
119 <version>1.0</version>
120 </dependency>
121 <dependency>
122 <groupId>org.seasar.teeda</groupId>
123 <artifactId>teeda-ajax</artifactId>
124 <version>1.0-beta-6-SNAPSHOT</version>
125 </dependency>
126
127 <dependency>
128 <groupId>aopalliance</groupId>
129 <artifactId>aopalliance</artifactId>
130 <version>1.0</version>
131 </dependency>
132 <dependency>
133 <groupId>commons-logging</groupId>
134 <artifactId>commons-logging</artifactId>
135 <version>1.0.4</version>
136 </dependency>
137 <dependency>
138 <groupId>jboss</groupId>
139 <artifactId>javassist</artifactId>
140 <version>3.0</version>
141 </dependency>
142 <dependency>
143 <groupId>ognl</groupId>
144 <artifactId>ognl</artifactId>
145 <version>2.6.7</version>
146 </dependency>
147 <dependency>
148 <groupId>log4j</groupId>
149 <artifactId>log4j</artifactId>
150 <version>1.2.9</version>
151 </dependency>
152 <dependency>
153 <groupId>poi</groupId>
154 <artifactId>poi</artifactId>
155 <version>2.5.1-final-20040804</version>
156 </dependency>
157
158 <!--
159 <dependency>
160 <groupId>org.apache.geronimo.specs</groupId>
161 <artifactId>geronimo-j2ee_1.4_spec</artifactId>
162 <version>1.0</version>
163 <scope>provided</scope>
164 </dependency>
165 <dependency>
166 <groupId>commons-lang</groupId>
167 <artifactId>commons-lang</artifactId>
168 <version>2.1</version>
169 </dependency>
170 <dependency>
171 <groupId>nekohtml</groupId>
172 <artifactId>nekohtml</artifactId>
173 <version>0.9.5</version>
174 </dependency>
175 <dependency>
176 <groupId>commons-beanutils</groupId>
177 <artifactId>commons-beanutils</artifactId>
178 <version>1.7.0</version>
179 </dependency>
180 <dependency>
181 <groupId>commons-collections</groupId>
182 <artifactId>commons-collections</artifactId>
183 <version>2.1.1</version>
184 </dependency>
185 <dependency>
186 <groupId>commons-codec</groupId>
187 <artifactId>commons-codec</artifactId>
188 <version>1.3</version>
189 </dependency>
190 <dependency>
191 <groupId>commons-digester</groupId>
192 <artifactId>commons-digester</artifactId>
193 <version>1.7</version>
194 </dependency>
195 <dependency>
196 <groupId>commons-el</groupId>
197 <artifactId>commons-el</artifactId>
198 <version>1.0</version>
199 </dependency>
200 <dependency>
201 <groupId>commons-fileupload</groupId>
202 <artifactId>commons-fileupload</artifactId>
203 <version>1.1</version>
204 </dependency>
205 <dependency>
206 <groupId>commons-io</groupId>
207 <artifactId>commons-io</artifactId>
208 <version>1.1</version>
209 </dependency>
210 <dependency>
211 <groupId>commons-validator</groupId>
212 <artifactId>commons-validator</artifactId>
213 <version>1.3.0</version>
214 </dependency>
215 <dependency>
216 <groupId>oro</groupId>
217 <artifactId>oro</artifactId>
218 <version>2.0.8</version>
219 </dependency>
220 <dependency>
221 <groupId>org.apache.myfaces.tomahawk</groupId>
222 <artifactId>tomahawk</artifactId>
223 <version>1.1.3</version>
224 </dependency>
225 -->
226
227 </dependencies>
228 </project>

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