/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-02 14:06:36 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20170802140636-lwrlbd5po865nct0
Initial Commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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"
 
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>javaEE.x</groupId> <!-- Change -->
 
7
    <artifactId>template</artifactId> <!-- Change -->
 
8
    <packaging>war</packaging>
 
9
    <name>Web Examples :: Template</name> <!-- Change -->
 
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>template</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>
 
55
 
 
56
</project>