summaryrefslogtreecommitdiffstats
path: root/services/activity-spec/pom.xml
blob: 5e71480c7113fcbd677b0509bc072d73d91ee3ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://maven.apache.org/POM/4.0.0"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.openecomp.activityspec</groupId>
    <artifactId>activity-spec</artifactId>
    <packaging>pom</packaging>
    <version>1.2.0-SNAPSHOT</version>

    <modules>
        <module>activity-spec-web</module>
        <module>swagger-ui</module>
    </modules>

    <properties>
        <mockito.all.version>1.10.19</mockito.all.version>
        <mvn.surefire.version>2.19.1</mvn.surefire.version>
        <jacoco.version>0.7.9</jacoco.version>
        <mvn.compiler.version>2.5.1</mvn.compiler.version>
        <mvn.license.version>1.10</mvn.license.version>
        <mvn.assembly.version>2.1</mvn.assembly.version>
        <mvn.deploy.version>2.4</mvn.deploy.version>
        <mvn.jar.version>2.4</mvn.jar.version>
        <mvn.war.version>2.1.1</mvn.war.version>
        <mvn.swagger.version>3.1.0</mvn.swagger.version>
        <java.source>1.8</java.source>
        <java.target>1.8</java.target>
        <spring.framework.version>4.1.3.RELEASE</spring.framework.version>
        <cxf.version>3.1.8</cxf.version>
        <ws.rs.version>2.0.1</ws.rs.version>
        <javax.inject.version>1</javax.inject.version>
        <jersey.multipart.version>1.18.1</jersey.multipart.version>
        <javax.servlet.version>2.5</javax.servlet.version>
        <org.codehaus.jackson.version>1.9.13</org.codehaus.jackson.version>
    </properties>

    <build>
        <pluginManagement>
        <plugins>
            <!-- ================================================== -->
            <!-- Set the JDK compiler version.                      -->
            <!-- ================================================== -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>${mvn.compiler.version}</version>
                <configuration>
                    <source>${java.source}</source>
                    <target>${java.target}</target>
                </configuration>
            </plugin>
        </plugins>
        </pluginManagement>
    </build>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.projectlombok</groupId>
                <artifactId>lombok</artifactId>
                <version>1.16.20</version>
                <scope>provided</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <reporting>
        <plugins>
            <plugin>
                <groupId>org.jacoco</groupId>
                <artifactId>jacoco-maven-plugin</artifactId>
                <version>${jacoco.version}</version>
            </plugin>
        </plugins>
    </reporting>
</project>