/magstudentportal/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/magstudentportal/trunk

« back to all changes in this revision

Viewing changes to pom.xml

  • Committer: Gustav Hartvigsson
  • Date: 2017-08-28 14:00:50 UTC
  • mfrom: (15.1.3 magstudentportal-more-db)
  • Revision ID: gustav.hartvigsson@gmail.com-20170828140050-zu6nqc1vlp9wnwh8
* derp?

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?xml version="1.0" encoding="UTF-8"?>
2
2
 
3
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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
 
        <!-- https://mvnrepository.com/artifact/org.eclipse.persistence/org.eclipse.persistence.jpa -->
40
 
        <dependency>
41
 
            <groupId>org.eclipse.persistence</groupId>
42
 
            <artifactId>org.eclipse.persistence.jpa</artifactId>
43
 
            <version>2.6.4</version>
44
 
        </dependency>
45
 
 
46
 
        <!-- https://mvnrepository.com/artifact/org.primefaces/primefaces -->
47
 
        <dependency>
48
 
            <groupId>org.primefaces</groupId>
49
 
            <artifactId>primefaces</artifactId>
50
 
            <version>6.1</version>
51
 
        </dependency>
52
 
 
53
 
 
54
 
    </dependencies>
 
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>
55
62
 
56
63
</project>