Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <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"> |
| 3 | <parent> |
| 4 | <groupId>org.openecomp.sdnc.core</groupId> |
| 5 | <artifactId>sdnc-core</artifactId> |
| 6 | <version>0.0.1-SNAPSHOT</version> |
| 7 | </parent> |
| 8 | |
| 9 | |
| 10 | <modelVersion>4.0.0</modelVersion> |
| 11 | <packaging>pom</packaging> |
| 12 | <groupId>org.openecomp.sdnc.core</groupId> |
| 13 | <artifactId>dblib</artifactId> |
| 14 | |
| 15 | |
| 16 | <name>DBLIB Adaptor</name> |
| 17 | <description>The DBLIB adaptor allows service logic to access persistent data in a local sql database</description> |
| 18 | |
| 19 | <version>0.0.1-SNAPSHOT</version> |
| 20 | |
| 21 | <build> |
| 22 | <plugins> |
| 23 | <plugin> |
| 24 | |
| 25 | <groupId>org.codehaus.mojo</groupId> |
| 26 | |
| 27 | <artifactId>license-maven-plugin</artifactId> |
| 28 | |
| 29 | <version>1.9</version> |
| 30 | |
| 31 | <configuration> |
| 32 | |
| 33 | <licenseName>apache_v2</licenseName> |
| 34 | |
| 35 | <inceptionYear>2016</inceptionYear> |
| 36 | |
| 37 | <organizationName>AT&T</organizationName> |
| 38 | |
| 39 | <projectName>openecomp</projectName> |
| 40 | |
| 41 | <roots> |
| 42 | |
| 43 | <root>src/main/java</root> |
| 44 | |
| 45 | </roots> |
| 46 | |
| 47 | <excludes> |
| 48 | |
| 49 | <exclude>*.png</exclude> |
| 50 | |
| 51 | </excludes> |
| 52 | |
| 53 | </configuration> |
| 54 | |
| 55 | </plugin> |
| 56 | </plugins> |
| 57 | |
| 58 | <pluginManagement> |
| 59 | <plugins> |
| 60 | <plugin> |
| 61 | <groupId>org.apache.maven.plugins</groupId> |
| 62 | <artifactId>maven-compiler-plugin</artifactId> |
| 63 | <version>${maven.compile.plugin.version}</version> |
| 64 | <configuration> |
| 65 | <source>${java.version.source}</source> |
| 66 | <target>${java.version.target}</target> |
| 67 | </configuration> |
| 68 | </plugin> |
| 69 | <plugin> |
| 70 | <groupId>org.apache.maven.plugins</groupId> |
| 71 | <artifactId>maven-javadoc-plugin</artifactId> |
| 72 | <version>2.10</version> |
| 73 | |
| 74 | <executions> |
| 75 | <execution> |
| 76 | <id>aggregate</id> |
| 77 | <goals> |
| 78 | <goal>aggregate</goal> |
| 79 | </goals> |
| 80 | <phase>site</phase> |
| 81 | |
| 82 | </execution> |
| 83 | </executions> |
| 84 | </plugin> |
| 85 | <plugin> |
| 86 | <artifactId>maven-source-plugin</artifactId> |
| 87 | <version>2.1.1</version> |
| 88 | <executions> |
| 89 | <execution> |
| 90 | <id>bundle-sources</id> |
| 91 | <phase>package</phase> |
| 92 | <goals> |
| 93 | <!-- produce source artifact for main project sources --> |
| 94 | <goal>jar-no-fork</goal> |
| 95 | |
| 96 | <!-- produce source artifact for project test sources --> |
| 97 | <goal>test-jar-no-fork</goal> |
| 98 | </goals> |
| 99 | </execution> |
| 100 | </executions> |
| 101 | </plugin> |
| 102 | </plugins> |
| 103 | |
| 104 | </pluginManagement> |
| 105 | </build> |
| 106 | <organization> |
| 107 | <name>AT&T</name> |
| 108 | </organization> |
| 109 | <modules> |
| 110 | <module>provider</module> |
| 111 | <module>features</module> |
| 112 | <module>installer</module> |
| 113 | </modules> |
| 114 | </project> |