| 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|---|
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|---|
| 3 | <modelVersion>4.0.0</modelVersion>
|
|---|
| 4 | <groupId>org.eobjects.metadatabeans</groupId>
|
|---|
| 5 | <artifactId>MetadataBeans</artifactId>
|
|---|
| 6 | <version>1.2</version>
|
|---|
| 7 | <name>MetadataBeans</name>
|
|---|
| 8 | <description>MetadataBeans, formerly known as MetaModel</description>
|
|---|
| 9 | <url>http://eobjects.org/metamodel</url>
|
|---|
| 10 | <inceptionYear>2007</inceptionYear>
|
|---|
| 11 | <packaging>jar</packaging>
|
|---|
| 12 | <scm>
|
|---|
| 13 | <connection>
|
|---|
| 14 | scm:svn:http://eobjects.org/svn/MetadataBeans/trunk/
|
|---|
| 15 | </connection>
|
|---|
| 16 | <developerConnection>
|
|---|
| 17 | scm:svn:http://eobjects.org/svn/MetadataBeans/trunk/
|
|---|
| 18 | </developerConnection>
|
|---|
| 19 | <url>
|
|---|
| 20 | http://eobjects.org/trac/browser/MetadataBeans/trunk/
|
|---|
| 21 | </url>
|
|---|
| 22 | </scm>
|
|---|
| 23 | <ciManagement>
|
|---|
| 24 | <system>hudson</system>
|
|---|
| 25 | <url>http://eobjects.org/hudson/</url>
|
|---|
| 26 | <notifiers>
|
|---|
| 27 | <notifier>
|
|---|
| 28 | <address>datacleaner-notify@googlegroups.com</address>
|
|---|
| 29 | <sendOnWarning>true</sendOnWarning>
|
|---|
| 30 | <sendOnError>true</sendOnError>
|
|---|
| 31 | <sendOnFailure>true</sendOnFailure>
|
|---|
| 32 | </notifier>
|
|---|
| 33 | </notifiers>
|
|---|
| 34 | </ciManagement>
|
|---|
| 35 | <issueManagement>
|
|---|
| 36 | <system>trac</system>
|
|---|
| 37 | <url>http://eobjects.org/trac</url>
|
|---|
| 38 | </issueManagement>
|
|---|
| 39 | <mailingLists>
|
|---|
| 40 | <mailingList>
|
|---|
| 41 | <name>MetaModel mailing list</name>
|
|---|
| 42 | <archive>http://groups.google.com/group/metamodel</archive>
|
|---|
| 43 | <post>metamodel@googlegroups.com</post>
|
|---|
| 44 | </mailingList>
|
|---|
| 45 | </mailingLists>
|
|---|
| 46 | <developers>
|
|---|
| 47 | <developer>
|
|---|
| 48 | <id>kasper</id>
|
|---|
| 49 | <name>Kasper SÞrensen</name>
|
|---|
| 50 | <email>kasper@eobjects.dk</email>
|
|---|
| 51 | <url>http://eobjects.org/trac/wiki/KasperSorensen</url>
|
|---|
| 52 | <organization>eobjects.org</organization>
|
|---|
| 53 | <organizationUrl>http://eobjects.org</organizationUrl>
|
|---|
| 54 | </developer>
|
|---|
| 55 | </developers>
|
|---|
| 56 | <licenses>
|
|---|
| 57 | <license>
|
|---|
| 58 | <name>Lesser General Public License</name>
|
|---|
| 59 | <url>http://www.gnu.org/licenses/lgpl.txt</url>
|
|---|
| 60 | </license>
|
|---|
| 61 | </licenses>
|
|---|
| 62 | <build>
|
|---|
| 63 | <plugins>
|
|---|
| 64 | <!-- Ensures java 6 compatibility -->
|
|---|
| 65 | <plugin>
|
|---|
| 66 | <artifactId>maven-compiler-plugin</artifactId>
|
|---|
| 67 | <configuration>
|
|---|
| 68 | <source>1.6</source>
|
|---|
| 69 | <target>1.6</target>
|
|---|
| 70 | <encoding>utf-8</encoding>
|
|---|
| 71 | </configuration>
|
|---|
| 72 | </plugin>
|
|---|
| 73 | <plugin>
|
|---|
| 74 | <!-- Makes source jar's available also (for repo deployment) -->
|
|---|
| 75 | <groupId>org.apache.maven.plugins</groupId>
|
|---|
| 76 | <artifactId>maven-source-plugin</artifactId>
|
|---|
| 77 | <executions>
|
|---|
| 78 | <execution>
|
|---|
| 79 | <id>attach-sources</id>
|
|---|
| 80 | <goals>
|
|---|
| 81 | <goal>jar</goal>
|
|---|
| 82 | </goals>
|
|---|
| 83 | </execution>
|
|---|
| 84 | </executions>
|
|---|
| 85 | </plugin>
|
|---|
| 86 | </plugins>
|
|---|
| 87 | </build>
|
|---|
| 88 | <reporting>
|
|---|
| 89 | <plugins>
|
|---|
| 90 | <plugin>
|
|---|
| 91 | <groupId>org.apache.maven.plugins</groupId>
|
|---|
| 92 | <artifactId>maven-javadoc-plugin</artifactId>
|
|---|
| 93 | <configuration>
|
|---|
| 94 | <aggregate>true</aggregate>
|
|---|
| 95 | <!-- requires graphviz to generate UML diagrams -->
|
|---|
| 96 | <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
|
|---|
| 97 | <docletArtifact>
|
|---|
| 98 | <groupId>org.umlgraph</groupId>
|
|---|
| 99 | <artifactId>doclet</artifactId>
|
|---|
| 100 | <version>5.1</version>
|
|---|
| 101 | </docletArtifact>
|
|---|
| 102 | <useStandardDocletOptions>true</useStandardDocletOptions>
|
|---|
| 103 | </configuration>
|
|---|
| 104 | <reportSets>
|
|---|
| 105 | <reportSet>
|
|---|
| 106 | <id>aggregate</id>
|
|---|
| 107 | <reports>
|
|---|
| 108 | <report>aggregate</report>
|
|---|
| 109 | </reports>
|
|---|
| 110 | </reportSet>
|
|---|
| 111 | </reportSets>
|
|---|
| 112 | </plugin>
|
|---|
| 113 | </plugins>
|
|---|
| 114 | </reporting>
|
|---|
| 115 | <dependencies>
|
|---|
| 116 | <dependency>
|
|---|
| 117 | <groupId>joda-time</groupId>
|
|---|
| 118 | <artifactId>joda-time</artifactId>
|
|---|
| 119 | <version>1.5.2</version>
|
|---|
| 120 | </dependency>
|
|---|
| 121 | <dependency>
|
|---|
| 122 | <groupId>commons-math</groupId>
|
|---|
| 123 | <artifactId>commons-math</artifactId>
|
|---|
| 124 | <version>1.1</version>
|
|---|
| 125 | </dependency>
|
|---|
| 126 | <dependency>
|
|---|
| 127 | <groupId>commons-lang</groupId>
|
|---|
| 128 | <artifactId>commons-lang</artifactId>
|
|---|
| 129 | <version>2.4</version>
|
|---|
| 130 | </dependency>
|
|---|
| 131 |
|
|---|
| 132 | <!-- Optional dependencies -->
|
|---|
| 133 | <dependency>
|
|---|
| 134 | <groupId>com.healthmarketscience.jackcess</groupId>
|
|---|
| 135 | <artifactId>jackcess</artifactId>
|
|---|
| 136 | <version>1.1.20</version>
|
|---|
| 137 | <exclusions>
|
|---|
| 138 | <exclusion>
|
|---|
| 139 | <groupId>commons-lang</groupId>
|
|---|
| 140 | <artifactId>commons-lang</artifactId>
|
|---|
| 141 | </exclusion>
|
|---|
| 142 | <exclusion>
|
|---|
| 143 | <groupId>commons-logging</groupId>
|
|---|
| 144 | <artifactId>commons-logging</artifactId>
|
|---|
| 145 | </exclusion>
|
|---|
| 146 | </exclusions>
|
|---|
| 147 | <optional>true</optional>
|
|---|
| 148 | </dependency>
|
|---|
| 149 | <dependency>
|
|---|
| 150 | <groupId>hsqldb</groupId>
|
|---|
| 151 | <artifactId>hsqldb</artifactId>
|
|---|
| 152 | <version>1.8.0.7</version>
|
|---|
| 153 | <optional>true</optional>
|
|---|
| 154 | </dependency>
|
|---|
| 155 | <dependency>
|
|---|
| 156 | <groupId>org.apache.poi</groupId>
|
|---|
| 157 | <artifactId>poi</artifactId>
|
|---|
| 158 | <version>3.2-FINAL</version>
|
|---|
| 159 | <optional>true</optional>
|
|---|
| 160 | </dependency>
|
|---|
| 161 | <dependency>
|
|---|
| 162 | <groupId>net.sf.opencsv</groupId>
|
|---|
| 163 | <artifactId>opencsv</artifactId>
|
|---|
| 164 | <version>1.8</version>
|
|---|
| 165 | <optional>true</optional>
|
|---|
| 166 | </dependency>
|
|---|
| 167 |
|
|---|
| 168 | <!-- Test dependencies -->
|
|---|
| 169 | <dependency>
|
|---|
| 170 | <groupId>junit</groupId>
|
|---|
| 171 | <artifactId>junit</artifactId>
|
|---|
| 172 | <version>4.7</version>
|
|---|
| 173 | <scope>test</scope>
|
|---|
| 174 | </dependency>
|
|---|
| 175 | <dependency>
|
|---|
| 176 | <groupId>org.easymock</groupId>
|
|---|
| 177 | <artifactId>easymock</artifactId>
|
|---|
| 178 | <version>2.3</version>
|
|---|
| 179 | <scope>test</scope>
|
|---|
| 180 | </dependency>
|
|---|
| 181 | <dependency>
|
|---|
| 182 | <groupId>org.apache.derby</groupId>
|
|---|
| 183 | <artifactId>derby</artifactId>
|
|---|
| 184 | <version>10.3.1.4</version>
|
|---|
| 185 | <scope>test</scope>
|
|---|
| 186 | </dependency>
|
|---|
| 187 | <dependency>
|
|---|
| 188 | <groupId>postgresql</groupId>
|
|---|
| 189 | <artifactId>postgresql</artifactId>
|
|---|
| 190 | <version>8.3-603.jdbc3</version>
|
|---|
| 191 | <scope>test</scope>
|
|---|
| 192 | </dependency>
|
|---|
| 193 | <dependency>
|
|---|
| 194 | <groupId>mysql</groupId>
|
|---|
| 195 | <artifactId>mysql-connector-java</artifactId>
|
|---|
| 196 | <version>5.1.6</version>
|
|---|
| 197 | <scope>test</scope>
|
|---|
| 198 | </dependency>
|
|---|
| 199 | <dependency>
|
|---|
| 200 | <groupId>org.xerial</groupId>
|
|---|
| 201 | <artifactId>sqlite-jdbc</artifactId>
|
|---|
| 202 | <version>3.6.0</version>
|
|---|
| 203 | <scope>test</scope>
|
|---|
| 204 | </dependency>
|
|---|
| 205 | </dependencies>
|
|---|
| 206 | </project> |
|---|