vivo/api/pom.xml

119 lines
3.8 KiB
XML
Raw Normal View History

2015-11-19 23:47:41 +00:00
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.vivoweb</groupId>
<artifactId>vivo-api</artifactId>
<version>1.11.0-SNAPSHOT</version>
2015-11-19 23:47:41 +00:00
<packaging>jar</packaging>
<parent>
<groupId>org.vivoweb</groupId>
<artifactId>vivo-project</artifactId>
<version>1.11.0-SNAPSHOT</version>
2015-11-19 23:47:41 +00:00
<relativePath>..</relativePath>
</parent>
<name>VIVO API</name>
<dependencies>
<dependency>
<groupId>org.vivoweb</groupId>
<artifactId>vitro-api</artifactId>
</dependency>
<dependency>
<groupId>org.vivoweb</groupId>
<artifactId>vitro-dependencies</artifactId>
<type>pom</type>
2015-11-19 23:47:41 +00:00
</dependency>
2017-09-29 08:42:58 +01:00
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>fluent-hc</artifactId>
2017-09-29 08:59:39 +01:00
<version>4.5.3</version>
2017-09-29 08:42:58 +01:00
</dependency>
2015-11-19 23:47:41 +00:00
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
2017-09-18 16:28:30 +01:00
<version>5.5.12</version>
2015-11-19 23:47:41 +00:00
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
2017-09-20 14:28:03 +01:00
<version>4.3.11.RELEASE</version>
2015-11-19 23:47:41 +00:00
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
2017-09-20 14:28:03 +01:00
<version>4.3.11.RELEASE</version>
2015-11-19 23:47:41 +00:00
</dependency>
<dependency>
<groupId>org.vivoweb.dependencies</groupId>
<artifactId>oim.vivo.scimapcore</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.vivoweb</groupId>
2015-11-19 23:47:41 +00:00
<artifactId>orcid-api-client</artifactId>
<version>0.6.3</version>
2015-11-19 23:47:41 +00:00
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
2015-11-19 23:47:41 +00:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jsp-api</artifactId>
<version>2.0</version>
<scope>provided</scope>
</dependency>
2016-12-24 12:07:11 +00:00
<dependency>
<groupId>javax.xml</groupId>
2017-09-18 10:57:15 +01:00
<artifactId>jaxrpc-api</artifactId>
2016-12-24 12:07:11 +00:00
<version>1.1</version>
</dependency>
2015-11-19 23:47:41 +00:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.vivoweb</groupId>
<artifactId>vitro-api</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
2017-10-05 18:10:01 +01:00
<build>
2017-10-05 18:10:01 +01:00
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.5</version>
<configuration>
<effort>Max</effort>
<threshold>Low</threshold>
<failOnError>true</failOnError>
<plugins>
<plugin>
<groupId>com.h3xstream.findsecbugs</groupId>
<artifactId>findsecbugs-plugin</artifactId>
<version>LATEST</version> <!-- Auto-update to the latest stable -->
</plugin>
</plugins>
</configuration>
2017-10-05 18:10:01 +01:00
</plugin>
</plugins>
</build>
2015-11-19 23:47:41 +00:00
</project>