/magstudentportal/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/magstudentportal/trunk
1 by Gustav Hartvigsson
Initial Commit
1
<?xml version="1.0" encoding="UTF-8"?>
2
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15.1.3 by Gustav Hartvigsson
Generated classes from tables and added them.
4
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5
  <modelVersion>4.0.0</modelVersion>
6
  <groupId>com.example.mag</groupId>
7
  <artifactId>mag-student-portal</artifactId>
8
  <packaging>war</packaging>
9
  <name>MAG - Student Portal</name>
10
  <version>1.1.0-SNAPSHOT</version>
11
12
  <properties>
13
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14
  </properties>
15
  <build>
16
    <finalName>${project.artifactId}-${project.version}</finalName> <!-- Change -->
17
    <plugins>
18
      <plugin>
19
        <groupId>org.apache.maven.plugins</groupId>
20
        <artifactId>maven-compiler-plugin</artifactId>
21
        <version>3.1</version>
22
        <configuration>
23
          <source>1.8</source>
24
          <target>1.8</target>
25
        </configuration>
26
      </plugin>
27
28
    </plugins>
29
  </build>
30
31
32
  <dependencies>
33
    <!-- https://mvnrepository.com/artifact/javax/javaee-api -->
34
    <dependency>
35
      <groupId>javax</groupId>
36
      <artifactId>javaee-api</artifactId>
37
      <version>7.0</version>
38
    </dependency>
39
40
    <!-- https://mvnrepository.com/artifact/org.eclipse.persistence/org.eclipse.persistence.jpa -->
41
    <dependency>
42
      <groupId>org.eclipse.persistence</groupId>
43
      <artifactId>org.eclipse.persistence.jpa</artifactId>
44
      <version>2.6.4</version>
45
    </dependency>
46
47
    <!-- https://mvnrepository.com/artifact/org.primefaces/primefaces -->
48
    <dependency>
49
      <groupId>org.primefaces</groupId>
50
      <artifactId>primefaces</artifactId>
51
      <version>6.1</version>
52
    </dependency>
53
54
    <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
55
    <dependency>
56
      <groupId>org.postgresql</groupId>
57
      <artifactId>postgresql</artifactId>
58
      <version>42.1.4</version>
59
    </dependency>
60
61
  </dependencies>
1 by Gustav Hartvigsson
Initial Commit
62
63
</project>