Quick Search:

View

Revision:

Diff

Diff from 28 to:

Annotations

Annotate by Age | Author | Mixed | None
/fisheye/browse/HibernateSpatial/tags/1.0-M2/hibernate-spatial-maven/pom.xml

Annotated File View

maesenka
9
1 <?xml version="1.0" encoding="UTF-8"?>
maesenka
10
2 <!--  $Id: pom.xml 28 2007-04-30 16:26:58Z maesenka $ -->
maesenka
9
3 <project>
4         <modelVersion>4.0.0</modelVersion>
5         <groupId>com.cadrie.hibernate</groupId>
6         <artifactId>majas-hibernate</artifactId>
maesenka
23
7         <version>1.0-SNAPSHOT</version>
maesenka
10
8         <name>Hibernate Spatial Extension</name>
9         <description>
10                 This is the Maven parent project for all Hibernate Spatial
11                 Extension Modules. The main module is Hibernate Spatial, which
12                 provides the core extension classes. The other modules are the
13                 dialect providers for the Oracle 10g and Postgresql geographic
14                 data support. For more information on how to use Spatial
15                 Hibernate, go to the Hibernate Spatial site.
16         </description>
17         <url>http://www.cadrie.com/projects/majas-hibernate/</url>
maesenka
9
18         <packaging>pom</packaging>
19         <modules>
20                 <module>../hibernate-spatial</module>
21                 <module>../hibernate-spatial-postgis</module>
22                 <module>../hibernate-spatial-oracle</module>
23         </modules>
maesenka
10
24         <build>
25                 <plugins>
maesenka
23
26                         <plugin>
27                                 <artifactId>maven-compiler-plugin</artifactId>
28                                 <configuration>
29                                         <source>1.5</source>
30                                         <target>1.5</target>
31                                 </configuration>
32                         </plugin>
33
maesenka
10
34                         <!--  We skip the unit tests when building and packaging because it
35                                 it requires specific test set-up.  
36                         -->
37                         <plugin>
38                                 <groupId>org.apache.maven.plugins</groupId>
39                                 <artifactId>maven-surefire-plugin</artifactId>
40                                 <configuration>
41                                         <skip>true</skip>
42                                 </configuration>
43                         </plugin>
44                         <!--  CaDriE developed plugin for managing header files -->
45                         <plugin>
46                                 <groupId>com.cadrie</groupId>
47                                 <artifactId>maven-header-plugin</artifactId>
48                                 <configuration>
49                                         <headerFile>header.txt</headerFile>
50                                 </configuration>
51                                 <version>1.0-SNAPSHOT</version>
52                         </plugin>
53                 </plugins>
54         </build>
maesenka
9
55         <scm>
maesenka
10
56                 <connection>
57                         scm:svn:https://www.cadrie.com/svn/majas/trunk/hibernate-spatial-maven
58                 </connection>
59                 <developerConnection>
60                         scm:svn:https://www.cadrie.com/svn/majas/trunk/hibernate-spatial-maven
61                 </developerConnection>
62                 <url>
63                         https://www.cadrie.com/svn/majas/trunk/hibernate-spatial-maven
64                 </url>
maesenka
9
65         </scm>
maesenka
10
66         <mailingLists>
67                 <mailingList>
68                         <name>MAJAS-dev</name>
69                         <subscribe>
70                                 http://www.cadrie.com/mailman/listinfo/majas-dev
71                         </subscribe>
72                         <unsubscribe>
73                                 http://www.cadrie.com/mailman/listinfo/majas-dev
74                         </unsubscribe>
75
76                         <archive>
77                                 http://www.cadrie.com/pipermail/majas-dev/
78                         </archive>
79                 </mailingList>
80         </mailingLists>
maesenka
9
81         <licenses>
82                 <license>
maesenka
10
83                         <name>GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1</name>
84                         <url>http://www.gnu.org/licenses/lgpl.txt</url>
maesenka
9
85                         <distribution>repo</distribution>
86                 </license>
87         </licenses>
88         <organization>
89                 <name>Caffeine-Driven Enterprises</name>
90                 <url>http://www.cadrie.com</url>
91         </organization>
92         <dependencies>
93                 <dependency>
94                         <groupId>org.hibernate</groupId>
95                         <artifactId>hibernate</artifactId>
96                         <version>3.2.2.ga</version>
97                 </dependency>
98                 <dependency>
99                         <groupId>com.vividsolutions</groupId>
100                         <artifactId>jts</artifactId>
101                         <version>1.7.1</version>
102                 </dependency>
103                 <dependency>
104                         <groupId>junit</groupId>
105                         <artifactId>junit</artifactId>
106                         <version>4.1</version>
maesenka
10
107                         <scope>test</scope>
108                 </dependency>
109                 <dependency>
110                         <groupId>commons-logging</groupId>
111                         <artifactId>commons-logging</artifactId>
112                         <version>1.0.4</version>
maesenka
9
113                 </dependency>
114         </dependencies>
maesenka
10
115
116         <reporting>
117                 <plugins>
118                         <plugin>
119                                 <groupId>org.apache.maven.plugins</groupId>
120                                 <artifactId>maven-javadoc-plugin</artifactId>
121                                 <!--  Keep javadoc in modules.
122                                         <configuration>
123                                         <aggregate>true</aggregate>
124                                         </configuration> 
125                                 -->
126                         </plugin>
127                         <!-- 
128                                 <plugin>
129                                 <groupId>org.apache.maven.plugins</groupId>
130                                 <artifactId>maven-checkstyle-plugin</artifactId>
131                                 </plugin>
132                         -->
133                 </plugins>
134         </reporting>
135
maesenka
9
136         <distributionManagement>
137                 <site>
maesenka
10
138                         <id>MAJAS Hibernate Spatial site</id>
maesenka
9
139                         <name>Hibernate Spatial</name>
maesenka
10
140                         <url>
141                                 scp://www.cadrie.com/var/www/www.cadrie.com/htdocs/projects/majas-hibernate/
142                         </url>
maesenka
9
143                 </site>
maesenka
28
144
145                 <!-- use the following if you're not using a snapshot version. -->
146                 <repository>
147                         <id>cadrie</id>
148                         <name>CaDriE repository</name>
149                         <url>
150                                 scp://www.cadrie.com/var/www/www.cadrie.com/htdocs/repository/
151                         </url>
152                 </repository>
153                 <!-- use the following if you ARE using a snapshot version. -->
154                 <snapshotRepository>
155                         <id>cadrie</id>
156                         <name>CaDriE repository</name>
157                         <url>
158                                 scp://www.cadrie.com/var/www/www.cadrie.com/htdocs/repository/
159                         </url>
160                 </snapshotRepository>
161
maesenka
9
162         </distributionManagement>
163         <developers>
164                 <developer>
maesenka
10
165                         <id>maesenka</id>
166                         <name>Karel Maesen</name>
167                         <email>karel.maesen@cadrie.com</email>
maesenka
9
168                         <roles>
169                                 <role>Architect</role>
170                                 <role>Lead Developer</role>
171                         </roles>
172                 </developer>
173                 <developer>
maesenka
10
174                         <id>jandm</id>
175                         <name>Jan De Moerlose</name>
176                         <email>jan.demoerlose@cadrie.com</email>
maesenka
9
177                         <roles>
maesenka
10
178                                 <role>Developer</role>
maesenka
9
179                         </roles>
180                 </developer>
maesenka
10
181                 <developer>
maesenka
9
182                         <id>pieterdg</id>
183                         <name>Pieter De Graef</name>
184                         <email>pieter.degraef@cadrie.com</email>
185                         <roles>
186                                 <role>Developer</role>
187                         </roles>
188                 </developer>
maesenka
10
189         </developers>
190
maesenka
28
191
maesenka
9
192 </project>
FishEye: Open Source License registered to Hibernate Spatial.
Your maintenance has expired. You can renew your license at http://www.atlassian.com/fisheye/renew
Atlassian FishEye, Subversion, CVS & Perforce analysis. (Version:1.5.2 Build:build-298 2008-05-26 ) - Administration - Page generated 2010-09-08 05:54 +0200