| main/pom.xml |
| 1 | 1 | <?xml version="1.0"?> |
| 2 | | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | | <modelVersion>4.0.0</modelVersion> |
| 5 | | <groupId>com.bloatit</groupId> |
| 6 | | <artifactId>BloatIt</artifactId> |
| 7 | | <packaging>jar</packaging> |
| 8 | | <version>1.0.10-SNAPSHOT</version> |
| 9 | | <name>BloatIt</name> |
| 10 | | <url>http://maven.apache.org</url> |
| 11 | | <properties> |
| 12 | | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 13 | | <hibernate.version>3.6.1.Final</hibernate.version> |
| 14 | | </properties> |
| 15 | | <build> |
| 16 | | <plugins> |
| 17 | | <plugin> |
| 18 | | <groupId>org.apache.maven.plugins</groupId> |
| 19 | | <artifactId>maven-compiler-plugin</artifactId> |
| 20 | | <version>2.0.2</version> |
| 21 | | <configuration> |
| 22 | | <source>1.6</source> |
| 23 | | <target>1.6</target> |
| 24 | | </configuration> |
| 25 | | </plugin> |
| 26 | | <!-- Tests --> |
| 27 | | <plugin> |
| 28 | | <groupId>org.apache.maven.plugins</groupId> |
| 29 | | <artifactId>maven-surefire-plugin</artifactId> |
| 30 | | <version>2.8.1</version> |
| 31 | | <configuration> |
| 32 | | <test>com.bloatit.TestAll</test> |
| 33 | | </configuration> |
| 34 | | </plugin> |
| 35 | | <!-- Run annotation processors on src/main/java sources --> |
| 36 | | <plugin> |
| 37 | | <groupId>org.bsc.maven</groupId> |
| 38 | | <artifactId>maven-processor-plugin</artifactId> |
| 39 | | <executions> |
| 40 | | <execution> |
| 41 | | <id>process</id> |
| 42 | | <goals> |
| 43 | | <goal>process</goal> |
| 44 | | </goals> |
| 45 | | <phase>generate-sources</phase> |
| 46 | | <configuration> |
| 47 | | <processors> |
| 48 | | <!-- list of processors to use --> |
| 49 | | <processor>com.bloatit.framework.webprocessor.annotations.generator.ParamContainerProcessor</processor> |
| 50 | | </processors> |
| 51 | | </configuration> |
| 52 | | </execution> |
| 53 | | </executions> |
| 54 | | </plugin> |
| 55 | | <!-- i18n GetText --> |
| 56 | | <plugin> |
| 57 | | <groupId>org.xnap.commons</groupId> |
| 58 | | <artifactId>maven-gettext-plugin</artifactId> |
| 59 | | <version>1.2.3</version> |
| 60 | | <configuration> |
| 61 | | <poDirectory>${basedir}/po</poDirectory> |
| 62 | | <targetBundle>i18n.Messages</targetBundle> |
| 63 | | </configuration> |
| 64 | | <executions> |
| 65 | | <execution> |
| 66 | | <goals> |
| 67 | | <goal>dist</goal> |
| 68 | | </goals> |
| 69 | | <phase>generate-sources</phase> |
| 70 | | </execution> |
| 71 | | </executions> |
| 72 | | </plugin> |
| 73 | | <!-- Exec --> |
| 74 | | <plugin> |
| 75 | | <groupId>org.codehaus.mojo</groupId> |
| 76 | | <artifactId>exec-maven-plugin</artifactId> |
| 77 | | <version>1.2</version> |
| 78 | | <configuration> |
| 79 | | <mainClass>com.bloatit.BloatitServer</mainClass> |
| 80 | | <arguments> |
| 81 | | <argument>-classpath</argument> |
| 82 | | </arguments> |
| 83 | | </configuration> |
| 84 | | </plugin> |
| 85 | | <!-- Jar creation --> |
| 86 | | <plugin> |
| 87 | | <groupId>org.apache.maven.plugins</groupId> |
| 88 | | <artifactId>maven-jar-plugin</artifactId> |
| 89 | | <version>2.3.1</version> |
| 90 | | <configuration> |
| 91 | | <archive> |
| 92 | | <manifest> |
| 93 | | <mainClass>com.bloatit.BloatitServer</mainClass> |
| 94 | | </manifest> |
| 95 | | </archive> |
| 96 | | </configuration> |
| 97 | | </plugin> |
| 98 | | <plugin> |
| 99 | | <groupId>org.apache.maven.plugins</groupId> |
| 100 | | <artifactId>maven-dependency-plugin</artifactId> |
| 101 | | <version>2.2</version> |
| 102 | | <executions> |
| 103 | | <execution> |
| 104 | | <id>copy-dependencies</id> |
| 105 | | <phase>package</phase> |
| 106 | | <goals> |
| 107 | | <goal>copy-dependencies</goal> |
| 108 | | </goals> |
| 109 | | <configuration> |
| 110 | | <outputDirectory>${project.build.directory}/dependencies</outputDirectory> |
| 111 | | <overWriteReleases>false</overWriteReleases> |
| 112 | | <overWriteSnapshots>false</overWriteSnapshots> |
| 113 | | <overWriteIfNewer>true</overWriteIfNewer> |
| 114 | | <includeScope>runtime</includeScope> |
| 115 | | </configuration> |
| 116 | | </execution> |
| 117 | | </executions> |
| 118 | | </plugin> |
| 119 | | </plugins> |
| 120 | | <resources> |
| 121 | | <resource> |
| 122 | | <directory>${basedir}/src/main/resources/</directory> |
| 123 | | </resource> |
| 124 | | <resource> |
| 125 | | <targetPath>${project.build.directory}/classes</targetPath> |
| 126 | | <filtering>true</filtering> |
| 127 | | <directory>${basedir}</directory> |
| 128 | | <includes> |
| 129 | | <include>build.properties</include> |
| 130 | | </includes> |
| 131 | | </resource> |
| 132 | | </resources> |
| 133 | | </build> |
| 134 | | <repositories> |
| 135 | | <repository> |
| 136 | | <id>gettext-commons-site</id> |
| 137 | | <url>http://gettext-commons.googlecode.com/svn/maven-repository/</url> |
| 138 | | </repository> |
| 139 | | <repository> |
| 140 | | <id>central</id> |
| 141 | | <name>Maven Repository Switchboard</name> |
| 142 | | <layout>default</layout> |
| 143 | | <url>http://repo1.maven.org/maven2</url> |
| 144 | | <snapshots> |
| 145 | | <enabled>false</enabled> |
| 146 | | </snapshots> |
| 147 | | </repository> |
| 148 | | <repository> |
| 149 | | <id>jboss-public-repository-group</id> |
| 150 | | <name>JBoss Public Maven Repository Group</name> |
| 151 | | <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| 152 | | <layout>default</layout> |
| 153 | | <releases> |
| 154 | | <enabled>true</enabled> |
| 155 | | <updatePolicy>never</updatePolicy> |
| 156 | | </releases> |
| 157 | | <snapshots> |
| 158 | | <enabled>true</enabled> |
| 159 | | <updatePolicy>never</updatePolicy> |
| 160 | | </snapshots> |
| 161 | | </repository> |
| 162 | | <repository> |
| 163 | | <id>itextpdf.com</id> |
| 164 | | <name>Maven Repository for iText</name> |
| 165 | | <url>http://maven.itextpdf.com/</url> |
| 166 | | </repository> |
| 167 | | </repositories> |
| 168 | | <dependencies> |
| 169 | | <!-- tests --> |
| 170 | | <dependency> |
| 171 | | <groupId>junit</groupId> |
| 172 | | <artifactId>junit</artifactId> |
| 173 | | <version>4.8.2</version> |
| 174 | | <scope>test</scope> |
| 175 | | </dependency> |
| 176 | | <dependency> |
| 177 | | <groupId>org.dspace.dependencies.jmockit</groupId> |
| 178 | | <artifactId>dspace-jmockit</artifactId> |
| 179 | | <version>0.999.4</version> |
| 180 | | <type>jar</type> |
| 181 | | <scope>test</scope> |
| 182 | | </dependency> |
| 183 | | <!-- gettext --> |
| 184 | | <dependency> |
| 185 | | <groupId>org.xnap.commons</groupId> |
| 186 | | <artifactId>gettext-commons</artifactId> |
| 187 | | <version>0.9.6</version> |
| 188 | | </dependency> |
| 189 | | <!-- For hibernate --> |
| 190 | | <dependency> |
| 191 | | <groupId>org.hibernate</groupId> |
| 192 | | <artifactId>hibernate-core</artifactId> |
| 193 | | <version>${hibernate.version}</version> |
| 194 | | </dependency> |
| 195 | | <dependency> |
| 196 | | <groupId>org.hibernate</groupId> |
| 197 | | <artifactId>hibernate-entitymanager</artifactId> |
| 198 | | <version>${hibernate.version}</version> |
| 199 | | </dependency> |
| 200 | | <dependency> |
| 201 | | <groupId>org.hibernate</groupId> |
| 202 | | <artifactId>hibernate-ehcache</artifactId> |
| 203 | | <version>${hibernate.version}</version> |
| 204 | | </dependency> |
| 205 | | <dependency> |
| 206 | | <groupId>org.hibernate</groupId> |
| 207 | | <artifactId>hibernate-search</artifactId> |
| 208 | | <version>3.3.0.Final</version> |
| 209 | | </dependency> |
| 210 | | <!-- we need sl4j for logging with hibernate --> |
| 211 | | <dependency> |
| 212 | | <groupId>org.slf4j</groupId> |
| 213 | | <artifactId>slf4j-log4j12</artifactId> |
| 214 | | <version>1.6.0</version> |
| 215 | | </dependency> |
| 216 | | <dependency> |
| 217 | | <groupId>org.slf4j</groupId> |
| 218 | | <artifactId>slf4j-jdk14</artifactId> |
| 219 | | <version>1.6.1</version> |
| 220 | | </dependency> |
| 221 | | <dependency> |
| 222 | | <groupId>org.slf4j</groupId> |
| 223 | | <artifactId>slf4j-api</artifactId> |
| 224 | | <version>1.6.1</version> |
| 225 | | </dependency> |
| 226 | | <!-- We need postgresql --> |
| 227 | | <dependency> |
| 228 | | <groupId>postgresql</groupId> |
| 229 | | <artifactId>postgresql</artifactId> |
| 230 | | <version>8.4-701.jdbc4</version> |
| 231 | | </dependency> |
| 232 | | <!-- we need information from the APT project --> |
| 233 | | <dependency> |
| 234 | | <groupId>com.bloatit</groupId> |
| 235 | | <artifactId>BloatItApt</artifactId> |
| 236 | | <version>1.0.10-SNAPSHOT</version> |
| 237 | | </dependency> |
| 238 | | <dependency> |
| 239 | | <groupId>com.bloatit</groupId> |
| 240 | | <artifactId>BloatItPaypalBinding</artifactId> |
| 241 | | <version>1.0.10-SNAPSHOT</version> |
| 242 | | </dependency> |
| 243 | | <!-- Jakarta language commons (to escape string) --> |
| 244 | | <dependency> |
| 245 | | <groupId>commons-lang</groupId> |
| 246 | | <artifactId>commons-lang</artifactId> |
| 247 | | <version>2.3</version> |
| 248 | | </dependency> |
| 249 | | <!-- Web services --> |
| 250 | | <dependency> |
| 251 | | <groupId>org.apache.cxf</groupId> |
| 252 | | <artifactId>cxf-rt-frontend-jaxws</artifactId> |
| 253 | | <version>2.3.1</version> |
| 254 | | </dependency> |
| 255 | | <!-- Java mail --> |
| 256 | | <dependency> |
| 257 | | <groupId>org.apache.geronimo.javamail</groupId> |
| 258 | | <artifactId>geronimo-javamail_1.4_provider</artifactId> |
| 259 | | <version>1.7</version> |
| 260 | | </dependency> |
| 261 | | <dependency> |
| 262 | | <groupId>org.apache.geronimo.specs</groupId> |
| 263 | | <artifactId>geronimo-javamail_1.4_spec</artifactId> |
| 264 | | <version>1.6</version> |
| 265 | | </dependency> |
| 266 | | <!-- Encrypting the conf file arguments. --> |
| 267 | | <dependency> |
| 268 | | <groupId>org.jasypt</groupId> |
| 269 | | <artifactId>jasypt</artifactId> |
| 270 | | <version>1.7</version> |
| 271 | | <scope>compile</scope> |
| 272 | | </dependency> |
| 273 | | <!-- Encrypt/decrypt md5 sha1 etc.. --> |
| 274 | | <dependency> |
| 275 | | <groupId>commons-codec</groupId> |
| 276 | | <artifactId>commons-codec</artifactId> |
| 277 | | <version>1.5</version> |
| 278 | | </dependency> |
| 279 | | <dependency> |
| 280 | | <groupId>com.itextpdf</groupId> |
| 281 | | <artifactId>itextpdf</artifactId> |
| 282 | | <version>5.0.4</version> |
| 283 | | <scope>compile</scope> |
| 284 | | </dependency> |
| 285 | | |
| 286 | | <dependency> |
| 287 | | <groupId>com.googlecode.java-diff-utils</groupId> |
| 288 | | <artifactId>diffutils</artifactId> |
| 289 | | <version>1.2.1</version> |
| 290 | | </dependency> |
| 291 | | </dependencies> |
| 292 | | |
| 293 | | <pluginRepositories> |
| 294 | | <pluginRepository> |
| 295 | | <id>gettext-commons-site</id> |
| 296 | | <url>http://gettext-commons.googlecode.com/svn/maven-repository</url> |
| 297 | | </pluginRepository> |
| 298 | | <pluginRepository> |
| 299 | | <id>jboss-public-repository-group</id> |
| 300 | | <name>JBoss Public Maven Repository Group</name> |
| 301 | | <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| 302 | | <layout>default</layout> |
| 303 | | <releases> |
| 304 | | <enabled>true</enabled> |
| 305 | | <updatePolicy>never</updatePolicy> |
| 306 | | </releases> |
| 307 | | <snapshots> |
| 308 | | <enabled>true</enabled> |
| 309 | | <updatePolicy>never</updatePolicy> |
| 310 | | </snapshots> |
| 311 | | </pluginRepository> |
| 312 | | <pluginRepository> |
| 313 | | <id>maven2-repository.dev.java.net</id> |
| 314 | | <name>Java.net Repository for Maven</name> |
| 315 | | <url>http://download.java.net/maven/2/</url> |
| 316 | | <layout>default</layout> |
| 317 | | </pluginRepository> |
| 318 | | <pluginRepository> |
| 319 | | <id>central</id> |
| 320 | | <name>Maven Plugin Repository</name> |
| 321 | | <url>http://repo1.maven.org/maven2</url> |
| 322 | | <layout>default</layout> |
| 323 | | <snapshots> |
| 324 | | <enabled>false</enabled> |
| 325 | | </snapshots> |
| 326 | | <releases> |
| 327 | | <updatePolicy>never</updatePolicy> |
| 328 | | </releases> |
| 329 | | </pluginRepository> |
| 330 | | </pluginRepositories> |
| 2 | <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"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <groupId>com.bloatit</groupId> |
| 5 | <artifactId>BloatIt</artifactId> |
| 6 | <packaging>jar</packaging> |
| 7 | <version>1.0.11-beta</version> |
| 8 | <name>BloatIt</name> |
| 9 | <url>http://maven.apache.org</url> |
| 10 | <properties> |
| 11 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 12 | <hibernate.version>3.6.1.Final</hibernate.version> |
| 13 | </properties> |
| 14 | <build> |
| 15 | <plugins> |
| 16 | <plugin> |
| 17 | <groupId>org.apache.maven.plugins</groupId> |
| 18 | <artifactId>maven-compiler-plugin</artifactId> |
| 19 | <version>2.0.2</version> |
| 20 | <configuration> |
| 21 | <source>1.6</source> |
| 22 | <target>1.6</target> |
| 23 | </configuration> |
| 24 | </plugin> |
| 25 | <!-- Tests --> |
| 26 | <plugin> |
| 27 | <groupId>org.apache.maven.plugins</groupId> |
| 28 | <artifactId>maven-surefire-plugin</artifactId> |
| 29 | <version>2.8.1</version> |
| 30 | <configuration> |
| 31 | <test>com.bloatit.TestAll</test> |
| 32 | </configuration> |
| 33 | </plugin> |
| 34 | <!-- Run annotation processors on src/main/java sources --> |
| 35 | <plugin> |
| 36 | <groupId>org.bsc.maven</groupId> |
| 37 | <artifactId>maven-processor-plugin</artifactId> |
| 38 | <executions> |
| 39 | <execution> |
| 40 | <id>process</id> |
| 41 | <goals> |
| 42 | <goal>process</goal> |
| 43 | </goals> |
| 44 | <phase>generate-sources</phase> |
| 45 | <configuration> |
| 46 | <processors> |
| 47 | <!-- list of processors to use --> |
| 48 | <processor>com.bloatit.framework.webprocessor.annotations.generator.ParamContainerProcessor</processor> |
| 49 | </processors> |
| 50 | </configuration> |
| 51 | </execution> |
| 52 | </executions> |
| 53 | </plugin> |
| 54 | <!-- i18n GetText --> |
| 55 | <plugin> |
| 56 | <groupId>org.xnap.commons</groupId> |
| 57 | <artifactId>maven-gettext-plugin</artifactId> |
| 58 | <version>1.2.3</version> |
| 59 | <configuration> |
| 60 | <poDirectory>${basedir}/po</poDirectory> |
| 61 | <targetBundle>i18n.Messages</targetBundle> |
| 62 | </configuration> |
| 63 | <executions> |
| 64 | <execution> |
| 65 | <goals> |
| 66 | <goal>dist</goal> |
| 67 | </goals> |
| 68 | <phase>generate-sources</phase> |
| 69 | </execution> |
| 70 | </executions> |
| 71 | </plugin> |
| 72 | <!-- Exec --> |
| 73 | <plugin> |
| 74 | <groupId>org.codehaus.mojo</groupId> |
| 75 | <artifactId>exec-maven-plugin</artifactId> |
| 76 | <version>1.2</version> |
| 77 | <configuration> |
| 78 | <mainClass>com.bloatit.BloatitServer</mainClass> |
| 79 | <arguments> |
| 80 | <argument>-classpath</argument> |
| 81 | </arguments> |
| 82 | </configuration> |
| 83 | </plugin> |
| 84 | <!-- Jar creation --> |
| 85 | <plugin> |
| 86 | <groupId>org.apache.maven.plugins</groupId> |
| 87 | <artifactId>maven-jar-plugin</artifactId> |
| 88 | <version>2.3.1</version> |
| 89 | <configuration> |
| 90 | <archive> |
| 91 | <manifest> |
| 92 | <mainClass>com.bloatit.BloatitServer</mainClass> |
| 93 | </manifest> |
| 94 | </archive> |
| 95 | </configuration> |
| 96 | </plugin> |
| 97 | <plugin> |
| 98 | <groupId>org.apache.maven.plugins</groupId> |
| 99 | <artifactId>maven-dependency-plugin</artifactId> |
| 100 | <version>2.2</version> |
| 101 | <executions> |
| 102 | <execution> |
| 103 | <id>copy-dependencies</id> |
| 104 | <phase>package</phase> |
| 105 | <goals> |
| 106 | <goal>copy-dependencies</goal> |
| 107 | </goals> |
| 108 | <configuration> |
| 109 | <outputDirectory>${project.build.directory}/dependencies</outputDirectory> |
| 110 | <overWriteReleases>false</overWriteReleases> |
| 111 | <overWriteSnapshots>false</overWriteSnapshots> |
| 112 | <overWriteIfNewer>true</overWriteIfNewer> |
| 113 | <includeScope>runtime</includeScope> |
| 114 | </configuration> |
| 115 | </execution> |
| 116 | </executions> |
| 117 | </plugin> |
| 118 | </plugins> |
| 119 | <resources> |
| 120 | <resource> |
| 121 | <directory>${basedir}/src/main/resources/</directory> |
| 122 | </resource> |
| 123 | <resource> |
| 124 | <targetPath>${project.build.directory}/classes</targetPath> |
| 125 | <filtering>true</filtering> |
| 126 | <directory>${basedir}</directory> |
| 127 | <includes> |
| 128 | <include>build.properties</include> |
| 129 | </includes> |
| 130 | </resource> |
| 131 | </resources> |
| 132 | </build> |
| 133 | <repositories> |
| 134 | <repository> |
| 135 | <id>gettext-commons-site</id> |
| 136 | <url>http://gettext-commons.googlecode.com/svn/maven-repository/</url> |
| 137 | </repository> |
| 138 | <repository> |
| 139 | <id>central</id> |
| 140 | <name>Maven Repository Switchboard</name> |
| 141 | <layout>default</layout> |
| 142 | <url>http://repo1.maven.org/maven2</url> |
| 143 | <snapshots> |
| 144 | <enabled>false</enabled> |
| 145 | </snapshots> |
| 146 | </repository> |
| 147 | <repository> |
| 148 | <id>jboss-public-repository-group</id> |
| 149 | <name>JBoss Public Maven Repository Group</name> |
| 150 | <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| 151 | <layout>default</layout> |
| 152 | <releases> |
| 153 | <enabled>true</enabled> |
| 154 | <updatePolicy>never</updatePolicy> |
| 155 | </releases> |
| 156 | <snapshots> |
| 157 | <enabled>true</enabled> |
| 158 | <updatePolicy>never</updatePolicy> |
| 159 | </snapshots> |
| 160 | </repository> |
| 161 | <repository> |
| 162 | <id>itextpdf.com</id> |
| 163 | <name>Maven Repository for iText</name> |
| 164 | <url>http://maven.itextpdf.com/</url> |
| 165 | </repository> |
| 166 | </repositories> |
| 167 | <dependencies> |
| 168 | <!-- tests --> |
| 169 | <dependency> |
| 170 | <groupId>junit</groupId> |
| 171 | <artifactId>junit</artifactId> |
| 172 | <version>4.8.2</version> |
| 173 | <scope>test</scope> |
| 174 | </dependency> |
| 175 | <dependency> |
| 176 | <groupId>org.dspace.dependencies.jmockit</groupId> |
| 177 | <artifactId>dspace-jmockit</artifactId> |
| 178 | <version>0.999.4</version> |
| 179 | <type>jar</type> |
| 180 | <scope>test</scope> |
| 181 | </dependency> |
| 182 | <!-- gettext --> |
| 183 | <dependency> |
| 184 | <groupId>org.xnap.commons</groupId> |
| 185 | <artifactId>gettext-commons</artifactId> |
| 186 | <version>0.9.6</version> |
| 187 | </dependency> |
| 188 | <!-- For hibernate --> |
| 189 | <dependency> |
| 190 | <groupId>org.hibernate</groupId> |
| 191 | <artifactId>hibernate-core</artifactId> |
| 192 | <version>${hibernate.version}</version> |
| 193 | </dependency> |
| 194 | <dependency> |
| 195 | <groupId>org.hibernate</groupId> |
| 196 | <artifactId>hibernate-entitymanager</artifactId> |
| 197 | <version>${hibernate.version}</version> |
| 198 | </dependency> |
| 199 | <dependency> |
| 200 | <groupId>org.hibernate</groupId> |
| 201 | <artifactId>hibernate-ehcache</artifactId> |
| 202 | <version>${hibernate.version}</version> |
| 203 | </dependency> |
| 204 | <dependency> |
| 205 | <groupId>org.hibernate</groupId> |
| 206 | <artifactId>hibernate-search</artifactId> |
| 207 | <version>3.3.0.Final</version> |
| 208 | </dependency> |
| 209 | <!-- we need sl4j for logging with hibernate --> |
| 210 | <dependency> |
| 211 | <groupId>org.slf4j</groupId> |
| 212 | <artifactId>slf4j-log4j12</artifactId> |
| 213 | <version>1.6.0</version> |
| 214 | </dependency> |
| 215 | <dependency> |
| 216 | <groupId>org.slf4j</groupId> |
| 217 | <artifactId>slf4j-jdk14</artifactId> |
| 218 | <version>1.6.1</version> |
| 219 | </dependency> |
| 220 | <dependency> |
| 221 | <groupId>org.slf4j</groupId> |
| 222 | <artifactId>slf4j-api</artifactId> |
| 223 | <version>1.6.1</version> |
| 224 | </dependency> |
| 225 | <!-- We need postgresql --> |
| 226 | <dependency> |
| 227 | <groupId>postgresql</groupId> |
| 228 | <artifactId>postgresql</artifactId> |
| 229 | <version>8.4-701.jdbc4</version> |
| 230 | </dependency> |
| 231 | <!-- we need information from the APT project --> |
| 232 | <dependency> |
| 233 | <groupId>com.bloatit</groupId> |
| 234 | <artifactId>BloatItApt</artifactId> |
| 235 | <version>1.0.11-beta</version> |
| 236 | </dependency> |
| 237 | <dependency> |
| 238 | <groupId>com.bloatit</groupId> |
| 239 | <artifactId>BloatItPaypalBinding</artifactId> |
| 240 | <version>1.0.11-beta</version> |
| 241 | </dependency> |
| 242 | <!-- Jakarta language commons (to escape string) --> |
| 243 | <dependency> |
| 244 | <groupId>commons-lang</groupId> |
| 245 | <artifactId>commons-lang</artifactId> |
| 246 | <version>2.3</version> |
| 247 | </dependency> |
| 248 | <!-- Web services --> |
| 249 | <dependency> |
| 250 | <groupId>org.apache.cxf</groupId> |
| 251 | <artifactId>cxf-rt-frontend-jaxws</artifactId> |
| 252 | <version>2.3.1</version> |
| 253 | </dependency> |
| 254 | <!-- Java mail --> |
| 255 | <dependency> |
| 256 | <groupId>org.apache.geronimo.javamail</groupId> |
| 257 | <artifactId>geronimo-javamail_1.4_provider</artifactId> |
| 258 | <version>1.7</version> |
| 259 | </dependency> |
| 260 | <dependency> |
| 261 | <groupId>org.apache.geronimo.specs</groupId> |
| 262 | <artifactId>geronimo-javamail_1.4_spec</artifactId> |
| 263 | <version>1.6</version> |
| 264 | </dependency> |
| 265 | <!-- Encrypting the conf file arguments. --> |
| 266 | <dependency> |
| 267 | <groupId>org.jasypt</groupId> |
| 268 | <artifactId>jasypt</artifactId> |
| 269 | <version>1.7</version> |
| 270 | <scope>compile</scope> |
| 271 | </dependency> |
| 272 | <!-- Encrypt/decrypt md5 sha1 etc.. --> |
| 273 | <dependency> |
| 274 | <groupId>commons-codec</groupId> |
| 275 | <artifactId>commons-codec</artifactId> |
| 276 | <version>1.5</version> |
| 277 | </dependency> |
| 278 | <dependency> |
| 279 | <groupId>com.itextpdf</groupId> |
| 280 | <artifactId>itextpdf</artifactId> |
| 281 | <version>5.0.4</version> |
| 282 | <scope>compile</scope> |
| 283 | </dependency> |
| 284 | <dependency> |
| 285 | <groupId>com.googlecode.java-diff-utils</groupId> |
| 286 | <artifactId>diffutils</artifactId> |
| 287 | <version>1.2.1</version> |
| 288 | </dependency> |
| 289 | </dependencies> |
| 290 | <pluginRepositories> |
| 291 | <pluginRepository> |
| 292 | <id>gettext-commons-site</id> |
| 293 | <url>http://gettext-commons.googlecode.com/svn/maven-repository</url> |
| 294 | </pluginRepository> |
| 295 | <pluginRepository> |
| 296 | <id>jboss-public-repository-group</id> |
| 297 | <name>JBoss Public Maven Repository Group</name> |
| 298 | <url>https://repository.jboss.org/nexus/content/groups/public/</url> |
| 299 | <layout>default</layout> |
| 300 | <releases> |
| 301 | <enabled>true</enabled> |
| 302 | <updatePolicy>never</updatePolicy> |
| 303 | </releases> |
| 304 | <snapshots> |
| 305 | <enabled>true</enabled> |
| 306 | <updatePolicy>never</updatePolicy> |
| 307 | </snapshots> |
| 308 | </pluginRepository> |
| 309 | <pluginRepository> |
| 310 | <id>maven2-repository.dev.java.net</id> |
| 311 | <name>Java.net Repository for Maven</name> |
| 312 | <url>http://download.java.net/maven/2/</url> |
| 313 | <layout>default</layout> |
| 314 | </pluginRepository> |
| 315 | <pluginRepository> |
| 316 | <id>central</id> |
| 317 | <name>Maven Plugin Repository</name> |
| 318 | <url>http://repo1.maven.org/maven2</url> |
| 319 | <layout>default</layout> |
| 320 | <snapshots> |
| 321 | <enabled>false</enabled> |
| 322 | </snapshots> |
| 323 | <releases> |
| 324 | <updatePolicy>never</updatePolicy> |
| 325 | </releases> |
| 326 | </pluginRepository> |
| 327 | </pluginRepositories> |
| 331 | 328 | </project> |