Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

pom.xml

Blame
  • Forked from Yvan Peter / rest-tutoriel-tests-bdd
    Source project has a limited visibility.
    pom.xml 4.53 KiB
    <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>fr.ulille.iut</groupId>
    	<artifactId>jersey-todo</artifactId>
    	<packaging>jar</packaging>
    	<version>1.0-SNAPSHOT</version>
    	<name>jersey-todo</name>
    
    	<dependencyManagement>
    		<dependencies>
    			<dependency>
    				<groupId>org.glassfish.jersey</groupId>
    				<artifactId>jersey-bom</artifactId>
    				<version>${jersey.version}</version>
    				<type>pom</type>
    				<scope>import</scope>
    			</dependency>
    			<dependency>
    				<groupId>org.jdbi</groupId>
    				<artifactId>jdbi3-bom</artifactId>
    				<type>pom</type>
    				<version>${jdbi.version}</version>
    				<scope>import</scope>
    			</dependency>
    		</dependencies>
    	</dependencyManagement>
    
    	<dependencies>
    		<dependency>
    			<groupId>org.glassfish.jersey.containers</groupId>
    			<artifactId>jersey-container-grizzly2-http</artifactId>
    		</dependency>
    		<dependency>
    			<groupId>org.glassfish.jersey.inject</groupId>
    			<artifactId>jersey-hk2</artifactId>
    		</dependency>
    
    		<!-- uncomment this to get JSON support: -->
    		<dependency>
    			<groupId>org.glassfish.jersey.media</groupId>
    			<artifactId>jersey-media-json-binding</artifactId>
    		</dependency>
    		<!-- -->
    		<dependency>
    			<groupId>junit</groupId>
    			<artifactId>junit</artifactId>
    			<version>4.12</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.glassfish.jersey.test-framework.providers</groupId>
    			<artifactId>jersey-test-framework-provider-grizzly2</artifactId>
    			<version>${jersey.version}</version>
    		</dependency>
    		<!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc -->
    		<dependency>
    			<groupId>org.xerial</groupId>
    			<artifactId>sqlite-jdbc</artifactId>
    			<version>${sqlite-jdbc.version}</version>
    		</dependency>
    		<!-- https://mvnrepository.com/artifact/org.jdbi/jdbi3-core -->
    		<dependency>
    			<groupId>org.jdbi</groupId>
    			<artifactId>jdbi3-core</artifactId>
    		</dependency>
    		<dependency>