Project

General

Profile

« Previous | Next » 

Revision 44654

Added by Sofia Baltzi over 7 years ago

Add pom.xml

View differences:

pom.xml
2 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 3
	<parent>
4 4
		<groupId>eu.dnetlib</groupId>
5
		<artifactId>dnet-parent</artifactId>
5
		<artifactId>dnet-container-parent</artifactId>
6 6
		<version>1.0.0</version>
7 7
	</parent>
8 8
	<modelVersion>4.0.0</modelVersion>
9 9
	<groupId>eu.dnetlib</groupId>
10 10
	<artifactId>uoa-user-management</artifactId>
11
	<packaging>jar</packaging>
11
	<packaging>war</packaging>
12 12
	<version>1.0.0-SNAPSHOT</version>
13 13
	<scm>
14 14
		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-user-management/trunk</developerConnection>
......
68 68
			<scope>provided</scope>
69 69
		</dependency>
70 70

  
71
	</dependencies>
71
		<dependency>
72
			<groupId>mysql</groupId>
73
			<artifactId>mysql-connector-java</artifactId>
74
			<version>5.1.35</version>
75
		</dependency>
72 76

  
77
		<!-- https://mvnrepository.com/artifact/com.sun.jndi/ldap -->
78
		<!--dependency>
79
			<groupId>com.sun.jndi</groupId>
80
			<artifactId>ldap</artifactId>
81
			<version>1.2.4</version>
82
		</dependency-->
83
        <dependency>
84
            <groupId>org.apache.tomcat</groupId>
85
            <artifactId>tomcat-dbcp</artifactId>
86
            <version>7.0.37</version>
87
        </dependency>
88
		<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-dbcp2 -->
89
		<dependency>
90
			<groupId>org.apache.commons</groupId>
91
			<artifactId>commons-dbcp2</artifactId>
92
			<version>2.1.1</version>
93
		</dependency>
94
        <dependency>
95
            <groupId>commons-dbcp</groupId>
96
            <artifactId>commons-dbcp</artifactId>
97
            <version>20030825.184428</version>
98
        </dependency>
99
		<dependency>
100
			<groupId>com.unboundid</groupId>
101
			<artifactId>unboundid-ldapsdk</artifactId>
102
			<version>1.1.3</version>
103
		</dependency>
104

  
105
    </dependencies>
106

  
73 107
	<build>
74 108
		<plugins>
75 109
			<plugin>
......
83 117
					</descriptorRefs>
84 118
				</configuration>
85 119
            </plugin>
86
		</plugins>
120
            <plugin>
121
                <groupId>org.apache.maven.plugins</groupId>
122
                <artifactId>maven-compiler-plugin</artifactId>
123
                <configuration>
124
                    <source>1.7</source>
125
                    <target>1.7</target>
126
                </configuration>
127
            </plugin>
128
        </plugins>
87 129
	</build>
88 130
</project>

Also available in: Unified diff