-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpom.xml
137 lines (137 loc) · 4 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
<?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>
<groupId>net.databinder</groupId>
<artifactId>databinder-parent</artifactId>
<name>Databinder</name>
<version>1.3.2-SNAPSHOT</version>
<description>A persistence toolkit for Wicket</description>
<url>http://databinder.net/</url>
<inceptionYear>2005</inceptionYear>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>http://www.gnu.org/copyleft/lesser.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<wicket.version>1.4.10</wicket.version>
<scala.version>2.7.5</scala.version>
</properties>
<packaging>pom</packaging>
<modules>
<module>databinder-models</module>
<module>databinder-models-hib</module>
<module>databinder-models-jpa1</module>
<module>databinder-models-cay</module>
<module>databinder-components</module>
<module>databinder-components-hib</module>
<module>databinder-components-cay</module>
<module>databinder-auth-components</module>
<module>databinder-auth-components-hib</module>
<module>databinder-app</module>
<module>databinder-app-hib</module>
<module>databinder-app-cay</module>
<module>databinder-app-cluster</module>
<module>databinder-dispatch</module>
<module>databinder-dispatch-components</module>
<module>databinder-valid-hib</module>
<module>databinder-draw</module>
</modules>
<organization>
<name>Nathan Hamblen</name>
</organization>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav</artifactId>
<version>1.0-beta-2</version>
</extension>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>1.0-beta-6</version>
</extension>
</extensions>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<inherited>true</inherited>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
<source>1.5</source>
<linksource>true</linksource>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**</include>
</includes>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
</build>
<reporting>
<plugins>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>dependencies</report>
<report>license</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<scm>
<url>http://github.com/kryptt/Databinder-for-Wicket</url>
<connection>scm:git:git://github.com/kryptt/Databinder-for-Wicket.git</connection>
<developerConnection>scm:git:ssh://git@github.com/kryptt/Databinder-for-Wicket.git</developerConnection>
</scm>
<distributionManagement>
<repository>
<id>com.kindleit.releases</id>
<name>Kindling Snapshots</name>
<url>dav:http://mvn.kitsd.com/ext-releases/</url>
</repository>
<snapshotRepository>
<id>databinder-snapshots</id>
<name>Databinder snapshot repository</name>
<url>file:///var/dbwww/snapshot</url>
<uniqueVersion>false</uniqueVersion>
</snapshotRepository>
</distributionManagement>
</project>