/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>
20 by Gustav Hartvigsson
* Added Missing Dep. and fixed the real_hash_func method.
33
    <!-- https://mvnrepository.com/artifact//javaee-api -->
15.1.3 by Gustav Hartvigsson
Generated classes from tables and added them.
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>
15.2.7 by Gustav Hartvigsson
* Started work on design
60
61
    <!-- https://mvnrepository.com/artifact/junit/junit -->
15.2.2 by Gustav Hartvigsson
* Added JUnit and javax.faces dependancies to the pom.xml.
62
    <dependency>
15.2.7 by Gustav Hartvigsson
* Started work on design
63
      <groupId>junit</groupId>
64
      <artifactId>junit</artifactId>
65
      <version>4.12</version>
15.2.2 by Gustav Hartvigsson
* Added JUnit and javax.faces dependancies to the pom.xml.
66
    </dependency>
67
    <!-- https://mvnrepository.com/artifact/javax.faces/javax.faces-api -->
68
    <dependency>
15.2.7 by Gustav Hartvigsson
* Started work on design
69
      <groupId>javax.faces</groupId>
70
      <artifactId>javax.faces-api</artifactId>
71
      <version>2.3</version>
72
      <scope>provided</scope>
73
    </dependency>
74
    <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
75
    <dependency>
76
      <groupId>org.bouncycastle</groupId>
77
      <artifactId>bcprov-jdk15on</artifactId>
78
      <version>1.58</version>
20 by Gustav Hartvigsson
* Added Missing Dep. and fixed the real_hash_func method.
79
      <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcpkix-jdk15on -->
80
    </dependency>
81
82
    <dependency>
83
      <groupId>org.bouncycastle</groupId>
84
      <artifactId>bcpkix-jdk15on</artifactId>
85
      <version>1.58</version>
15.2.7 by Gustav Hartvigsson
* Started work on design
86
    </dependency>
87
15.1.3 by Gustav Hartvigsson
Generated classes from tables and added them.
88
  </dependencies>
15.2.7 by Gustav Hartvigsson
* Started work on design
89
90
1 by Gustav Hartvigsson
Initial Commit
91
92
</project>