-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
114 lines (103 loc) · 3.2 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
<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>
<groupId>org.tynamo</groupId>
<artifactId>tapestry-jpa-module</artifactId>
<name>Tapestry JPA Parent</name>
<version>2.0.2-SNAPSHOT</version>
<description>
Provides JPA integration for Tapestry 5.
</description>
<packaging>pom</packaging>
<inceptionYear>2009</inceptionYear>
<parent>
<groupId>org.tynamo</groupId>
<artifactId>tynamo-parent</artifactId>
<version>0.0.8</version>
</parent>
<modules>
<module>tapestry-jpa-core</module>
<module>tapestry-jpa</module>
<module>tapestry-jpa-webapp</module>
</modules>
<scm>
<connection>scm:svn:http://svn.codehaus.org/tynamo/trunk/tapestry-jpa-module</connection>
<developerConnection>scm:svn:https://svn.codehaus.org/tynamo/trunk/tapestry-jpa-module</developerConnection>
<url>http://svn.tynamo.codehaus.org/tynamo/trunk/tapestry-jpa-module</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<optimize>true</optimize>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<!-- The aggregate javadoc requires all modules are installed already before deployment -->
<preparationGoals>clean install</preparationGoals>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<site>
<id>tynamo-site</id>
<!-- Note the url. Only static files deployed in /constant/ can be decorated by Unity -->
<url>dav:https://dav.codehaus.org/tynamo/constant/sites/tapestry-jpa</url>
</site>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.tynamo</groupId>
<artifactId>tapestry-jpa-core</artifactId>
<version>2.0.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.tynamo</groupId>
<artifactId>tapestry-jpa</artifactId>
<version>2.0.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.tynamo</groupId>
<artifactId>tapestry-jpa-webapp</artifactId>
<version>2.0.2-SNAPSHOT</version>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>repositories</id>
<repositories>
<repository>
<id>EclipseLink Repo</id>
<url>http://maven.glassfish.org/content/repositories/eclipselink</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>repository.jboss.org</id>
<url>https://repository.jboss.org/nexus/content/repositories/releases</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
</project>