forked from ManyDesigns/Portofino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
executable file
·322 lines (320 loc) · 14.6 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.manydesigns</groupId>
<artifactId>portofino</artifactId>
<packaging>pom</packaging>
<version>4.3-SNAPSHOT</version>
<name>manydesigns-portofino</name>
<description>
Portofino is a web application framework written in Java and
extensible using Groovy, distributed under the LGPL open source license.
The framework can be used to create interactive database-driven web
applications. The creation process includes automatic generation through
a "wizard" tool, manual configuration through a web-based
administration interface, and customization through scripting languages.
The framework combines features that are typical of Content Management
Systems and of Rapid application development tools. Portofino is mainly
intended for Java developers of enterprise applications and of dynamic
web sites. It can connect to an existing database and generate a working
web application based on an automatic analysis of the database's
structure.
</description>
<url>http://www.manydesigns.com/</url>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE, Version 3</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<organization>
<name>MANYDESIGNS s.r.l.</name>
<url>http://www.manydesigns.com/</url>
</organization>
<mailingLists>
<mailingList>
<name>Portofino mailing list in English</name>
<archive>http://groups.google.com/group/manydesigns-portofino</archive>
</mailingList>
<mailingList>
<name>Portofino mailing list in Italian</name>
<archive>http://groups.google.com/group/manydesigns-portofino-it</archive>
</mailingList>
</mailingLists>
<scm>
<connection>scm:hg:http://hg.code.sf.net/p/portofino/mercurial</connection>
<developerConnection>scm:hg:https://hg.code.sf.net/p/portofino/mercurial</developerConnection>
<url>http://sourceforge.net/p/portofino/mercurial/</url>
<tag>tip</tag>
</scm>
<developers>
<developer>
<name>Angelo Lupo</name>
<email>[email protected]</email>
</developer>
<developer>
<name>Giampiero Granatella</name>
<email>[email protected]</email>
</developer>
<developer>
<name>Emanuele Poggi</name>
<email>[email protected]</email>
</developer>
<developer>
<name>Alessio Stalla</name>
<email>[email protected]</email>
</developer>
</developers>
<properties>
<commons.collections.version>3.1</commons.collections.version><!--Hibernate uses 3.1, Commons-configuration uses 3.2.1-->
<commons.configuration.version>1.10</commons.configuration.version>
<commons.dbutils.version>1.3</commons.dbutils.version>
<commons.email.version>1.2</commons.email.version>
<commons.fileupload.version>1.3</commons.fileupload.version>
<commons.io.version>2.4</commons.io.version>
<commons.lang.version>2.5</commons.lang.version>
<commons.logging.version>1.1.1</commons.logging.version>
<ehcache.version>2.5.2</ehcache.version>
<fop.version>1.0</fop.version>
<google.appengine.sdk.version>1.7.7.1</google.appengine.sdk.version> <!-- Last version supporting Java 6 -->
<groovy.version>2.4.4</groovy.version>
<guava.version>18.0</guava.version> <!-- Following GAE dependency -->
<hibernate.version>4.3.11.Final</hibernate.version>
<itext.version>2.1.7</itext.version>
<jasperreports.version>3.5.0</jasperreports.version>
<javassist.version>3.18.1-GA</javassist.version> <!-- Jersey -->
<javax.mail.version>1.4.1</javax.mail.version> <!-- According to commons-email -->
<javax.ws.rs.api.version>2.0.1</javax.ws.rs.api.version>
<jersey.version>2.17</jersey.version>
<jfreechart.version>1.0.17</jfreechart.version>
<joda-time.version>2.8.2</joda-time.version>
<jsp.api.version>2.3.0</jsp.api.version>
<jsqlparser.version>0.9.4</jsqlparser.version>
<json.version>20140107</json.version>
<jsoup.version>1.8.3</jsoup.version>
<jstl.version>1.1.2</jstl.version>
<jxl.version>2.6.12</jxl.version>
<liquibase.version>3.4.1</liquibase.version>
<logback.version>0.9.26</logback.version>
<ognl.version>3.1</ognl.version>
<quartz.version>2.2.1</quartz.version>
<resteasy.version>3.0.12.Final</resteasy.version>
<servlet.api.version>3.0.1</servlet.api.version>
<shiro.version>1.2.3</shiro.version>
<slf4j.version>1.7.5</slf4j.version>
<stax.version>1.2.0</stax.version>
<stripes.version>1.6.0</stripes.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<!-- Core stuff -->
<module>elements</module>
<module>portofino-base</module>
<module>portofino-stripes</module>
<module>portofino-jersey</module>
<module>portofino-resteasy</module>
<!-- Database persistence -->
<module>portofino-database</module>
<module>portofino-mysql</module>
<!--<module>portofino-db2</module>
<module>portofino-derby</module>
<module>portofino-googlecloudsql</module>
<module>portofino-h2</module>
<module>portofino-mssql</module>
<module>portofino-oracle</module>
<module>portofino-postgresql</module>-->
<!-- Pages -->
<module>portofino-pageactions</module>
<module>portofino-calendar</module>
<module>portofino-map</module>
<module>portofino-gallery</module>
<module>portofino-chart</module>
<module>portofino-crud</module>
<module>portofino-admin</module>
<module>portofino-theme</module>
<!-- Optional services -->
<module>portofino-atmosphere</module>
<module>portofino-mail</module>
<module>portofino-openid</module>
<module>portofino-quartz</module>
<module>app-many</module>
<!-- Applications -->
<module>portofino-war-archetype</module>
<!--<module>portofino-war-gae</module>-->
<!--<module>demo</module>-->
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!--<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<configuration>
<archive>
<index>true</index>
<manifest>
<addClasspath>true</addClasspath>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
<manifestEntries>
<mode>development</mode>
<url>${project.url}</url>
<key>value</key>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<descriptors>
<descriptor>assembly-src.xml</descriptor>
<descriptor>assembly-gae-bin.xml</descriptor>
</descriptors>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
</plugin>-->
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<arguments>-Psonatype-oss-release</arguments>
<localCheckout>true</localCheckout>
<pushChanges>false</pushChanges>
<tagNameFormat>@{project.version}</tagNameFormat>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>portofino-release</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<links>
<link>http://shiro.apache.org/static/${shiro.version}/apidocs/</link>
<link>https://stripesframework.ci.cloudbees.com/job/Stripes%201.6.0/javadoc/</link>
<link>https://commons.apache.org/proper/commons-configuration/javadocs/v1.10/apidocs/</link>
<link>http://docs.jboss.org/hibernate/orm/4.3/javadocs/</link>
<link>http://docs.groovy-lang.org/docs/groovy-${groovy.version}/html/api/</link>
<link>http://www.joda.org/joda-time/apidocs/</link>
<link>https://docs.oracle.com/javaee/6/api/</link>
<!-- Corresponding javadoc command line:
-link http://shiro.apache.org/static/1.2.3/apidocs/ -link https://stripesframework.ci.cloudbees.com/job/Stripes%201.6.0/javadoc/ -link https://commons.apache.org/proper/commons-configuration/javadocs/v1.10/apidocs/ -link https://docs.jboss.org/hibernate/orm/4.3/javadocs/ -link http://docs.groovy-lang.org/latest/html/api/ -link http://www.joda.org/joda-time/apidocs/ -link http://docs.oracle.com/javase/6/docs/api/ -link https://docs.oracle.com/javaee/6/api/ -encoding UTF-8
-->
</links>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<repository>
<id>glodon-nexus-releases</id>
<name>Glodon Nexus Release Repository</name>
<url>http://maven.glodon.com/nexus/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>glodon-nexus-snapshots</id>
<name>Glodon Nexus Snapshot Repository</name>
<url>http://maven.glodon.com/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
<!--<snapshotRepository>
<id>cloudt-snapshots</id>
<name>Glodon Nexus Snapshot Repository</name>
<url>http://192.168.133.231:8080/artifactory/snapshots</url>
</snapshotRepository>-->
</distributionManagement>
</project>