blob: cf7dbc50f4435ec6135f2f3567460a270b581712 [file] [log] [blame]
Ryan Goulding03235aa2017-09-19 11:14:41 -04001<?xml version="1.0" encoding="UTF-8"?>
Dan Timoney37d64682017-09-21 16:07:02 -04002<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Ryan Goulding03235aa2017-09-19 11:14:41 -04003 <parent>
4 <groupId>org.onap.ccsdk.sli.core</groupId>
5 <artifactId>ccsdk-sli-core</artifactId>
6 <version>0.1.2-SNAPSHOT</version>
7 </parent>
8
Dan Timoney37d64682017-09-21 16:07:02 -04009
Ryan Goulding03235aa2017-09-19 11:14:41 -040010 <modelVersion>4.0.0</modelVersion>
Dan Timoney37d64682017-09-21 16:07:02 -040011 <packaging>pom</packaging>
12 <groupId>org.onap.ccsdk.sli.core</groupId>
Ryan Goulding03235aa2017-09-19 11:14:41 -040013 <artifactId>utils</artifactId>
Ryan Goulding03235aa2017-09-19 11:14:41 -040014
Ryan Goulding03235aa2017-09-19 11:14:41 -040015
Dan Timoney37d64682017-09-21 16:07:02 -040016 <name>SLI Utils</name>
17 <description>Utilities used across sli-core</description>
Ryan Goulding03235aa2017-09-19 11:14:41 -040018
Dan Timoney37d64682017-09-21 16:07:02 -040019 <version>0.1.2-SNAPSHOT</version>
Ryan Goulding03235aa2017-09-19 11:14:41 -040020
21 <build>
Dan Timoney37d64682017-09-21 16:07:02 -040022
23 <pluginManagement>
24 <plugins>
25 <plugin>
26 <groupId>org.apache.maven.plugins</groupId>
27 <artifactId>maven-compiler-plugin</artifactId>
28 <version>${maven.compile.plugin.version}</version>
29 <configuration>
30 <source>${java.version.source}</source>
31 <target>${java.version.target}</target>
32 </configuration>
33 </plugin>
34 <plugin>
35 <groupId>org.apache.maven.plugins</groupId>
36 <artifactId>maven-javadoc-plugin</artifactId>
37 <version>2.10</version>
38
39 <executions>
40 <execution>
41 <id>aggregate</id>
42 <goals>
43 <goal>aggregate</goal>
44 </goals>
45 <phase>site</phase>
46
47 </execution>
48 </executions>
49 </plugin>
50 <plugin>
51 <artifactId>maven-source-plugin</artifactId>
52 <version>2.1.1</version>
53 <executions>
54 <execution>
55 <id>bundle-sources</id>
56 <phase>package</phase>
57 <goals>
58 <!-- produce source artifact for main project sources -->
59 <goal>jar-no-fork</goal>
60
61 <!-- produce source artifact for project test sources -->
62 <goal>test-jar-no-fork</goal>
63 </goals>
64 </execution>
65 </executions>
66 </plugin>
67 </plugins>
68
69 </pluginManagement>
Ryan Goulding03235aa2017-09-19 11:14:41 -040070 </build>
71 <organization>
Dan Timoney37d64682017-09-21 16:07:02 -040072 <name>AT&amp;T</name>
Ryan Goulding03235aa2017-09-19 11:14:41 -040073 </organization>
Dan Timoney37d64682017-09-21 16:07:02 -040074 <modules>
75 <module>provider</module>
76 <module>features</module>
77 <module>installer</module>
78 </modules>
Ryan Goulding03235aa2017-09-19 11:14:41 -040079</project>