AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <name>openecomp-common-configuration-management</name> |
| 6 | <groupId>org.openecomp.sdc.common</groupId> |
| 7 | <artifactId>openecomp-common-configuration-management</artifactId> |
| 8 | <packaging>pom</packaging> |
| 9 | |
| 10 | <parent> |
| 11 | <groupId>org.openecomp.sdc.common</groupId> |
| 12 | <artifactId>openecomp-common-lib</artifactId> |
Michael Lando | 0ad3c80 | 2017-09-19 16:32:59 +0300 | [diff] [blame] | 13 | <version>1.2.0-SNAPSHOT</version> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 14 | <relativePath>..</relativePath> |
| 15 | </parent> |
| 16 | |
| 17 | <modules> |
| 18 | <module>openecomp-configuration-management-api</module> |
| 19 | <module>openecomp-configuration-management-core</module> |
| 20 | <module>openecomp-configuration-management-cli</module> |
| 21 | <module>openecomp-configuration-management-test</module> |
| 22 | </modules> |
| 23 | |
| 24 | <repositories> |
| 25 | <repository> |
| 26 | <id>java.net</id> |
| 27 | <url>http://repo1.maven.org/maven2</url> |
| 28 | </repository> |
| 29 | </repositories> |
| 30 | |
| 31 | <build> |
| 32 | <plugins> |
| 33 | |
| 34 | <!-- ================================================== --> |
| 35 | <!-- Set the JDK compiler version. --> |
| 36 | <!-- ================================================== --> |
| 37 | <plugin> |
| 38 | <groupId>org.apache.maven.plugins</groupId> |
| 39 | <artifactId>maven-compiler-plugin</artifactId> |
| 40 | <version>${mvn.compiler.version}</version> |
| 41 | <inherited>true</inherited> |
| 42 | <configuration> |
| 43 | <source>${java.source}</source> |
| 44 | <target>${java.target}</target> |
| 45 | </configuration> |
| 46 | </plugin> |
| 47 | </plugins> |
| 48 | </build> |
| 49 | |
| 50 | </project> |