Skip Wonnell | abe9420 | 2017-08-29 22:39:17 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
| 2 | <!--
|
| 3 | ============LICENSE_START=======================================================
|
| 4 | ONAP : APPC
|
| 5 | ================================================================================
|
| 6 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
|
| 7 | ================================================================================
|
| 8 | Copyright (C) 2017 Amdocs
|
| 9 | =============================================================================
|
| 10 | Licensed under the Apache License, Version 2.0 (the "License");
|
| 11 | you may not use this file except in compliance with the License.
|
| 12 | You may obtain a copy of the License at
|
| 13 |
|
| 14 | http://www.apache.org/licenses/LICENSE-2.0
|
| 15 |
|
| 16 | Unless required by applicable law or agreed to in writing, software
|
| 17 | distributed under the License is distributed on an "AS IS" BASIS,
|
| 18 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 19 | See the License for the specific language governing permissions and
|
| 20 | limitations under the License.
|
| 21 |
|
| 22 | ECOMP is a trademark and service mark of AT&T Intellectual Property.
|
| 23 | ============LICENSE_END=========================================================
|
| 24 | -->
|
| 25 | <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/xsd/maven-4.0.0.xsd">
|
| 26 | <modelVersion>4.0.0</modelVersion>
|
| 27 | <parent>
|
| 28 | <artifactId>appc-java-client</artifactId>
|
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame^] | 29 | <groupId>org.onap.appc.client</groupId>
|
Jessica Wagantall | 6536799 | 2017-11-16 17:22:13 -0800 | [diff] [blame] | 30 | <version>1.3.0-SNAPSHOT</version>
|
Skip Wonnell | abe9420 | 2017-08-29 22:39:17 -0500 | [diff] [blame] | 31 | </parent>
|
| 32 |
|
| 33 | <artifactId>code-generator</artifactId>
|
| 34 | <name>code-generator</name>
|
| 35 | <description>APPC client code generator</description>
|
| 36 | <packaging>maven-plugin</packaging>
|
| 37 |
|
| 38 | <properties>
|
| 39 | <licenseDir>${project.parent.parent.basedir}</licenseDir>
|
| 40 | </properties>
|
| 41 |
|
| 42 | <build>
|
| 43 | <plugins>
|
| 44 | <plugin>
|
| 45 | <groupId>org.apache.maven.plugins</groupId>
|
| 46 | <artifactId>maven-compiler-plugin</artifactId>
|
| 47 | <configuration>
|
| 48 | <source>${java.version}</source>
|
| 49 | <target>${java.version}</target>
|
| 50 | </configuration>
|
| 51 | </plugin>
|
| 52 | <plugin>
|
| 53 | <groupId>org.apache.maven.plugins</groupId>
|
| 54 | <artifactId>maven-plugin-plugin</artifactId>
|
| 55 | <version>${maven.plugin.plugin.version}</version>
|
| 56 | <configuration>
|
| 57 | <goalPrefix>code-generator</goalPrefix>
|
| 58 | <encoding>UTF-8</encoding>
|
| 59 | </configuration>
|
| 60 | <executions>
|
| 61 | <execution>
|
| 62 | <id>default-descriptor</id>
|
| 63 | <goals>
|
| 64 | <goal>descriptor</goal>
|
| 65 | </goals>
|
| 66 | <phase>process-classes</phase>
|
| 67 | </execution>
|
| 68 | <execution>
|
| 69 | <id>help-descriptor</id>
|
| 70 | <goals>
|
| 71 | <goal>helpmojo</goal>
|
| 72 | </goals>
|
| 73 | <phase>process-classes</phase>
|
| 74 | </execution>
|
| 75 | </executions>
|
| 76 | </plugin>
|
| 77 | </plugins>
|
| 78 | </build>
|
| 79 | <dependencies>
|
| 80 | <dependency>
|
| 81 | <groupId>org.opendaylight.yangtools</groupId>
|
| 82 | <artifactId>yang-parser-impl</artifactId>
|
| 83 | <version>${yang.parser.impl.version}</version>
|
| 84 | </dependency>
|
| 85 | <dependency>
|
| 86 | <groupId>org.opendaylight.controller</groupId>
|
| 87 | <artifactId>sal-core-api</artifactId>
|
| 88 | <version>${sal.core.api.version}</version>
|
| 89 | </dependency>
|
| 90 | <dependency>
|
| 91 | <groupId>org.opendaylight.yangtools</groupId>
|
| 92 | <artifactId>yang-model-api</artifactId>
|
| 93 | <version>${yang.parser.impl.version}</version>
|
| 94 | </dependency>
|
| 95 | <dependency>
|
| 96 | <groupId>com.fasterxml.jackson.core</groupId>
|
| 97 | <artifactId>jackson-databind</artifactId>
|
| 98 | <version>${jackson.version}</version>
|
| 99 | </dependency>
|
| 100 | <dependency>
|
| 101 | <groupId>org.freemarker</groupId>
|
| 102 | <artifactId>freemarker</artifactId>
|
| 103 | <version>${freemarker.version}</version>
|
| 104 | </dependency>
|
| 105 |
|
| 106 | <dependency>
|
| 107 | <groupId>org.apache.maven.plugin-tools</groupId>
|
| 108 | <artifactId>maven-plugin-annotations</artifactId>
|
| 109 | <version>${maven.plugin.annotations.version}</version>
|
| 110 | </dependency>
|
| 111 | <dependency>
|
| 112 | <groupId>org.apache.maven</groupId>
|
| 113 | <artifactId>maven-plugin-api</artifactId>
|
| 114 | <version>${maven.plugin.api.version}</version>
|
| 115 | </dependency>
|
| 116 | <dependency>
|
| 117 | <groupId>org.apache.maven</groupId>
|
| 118 | <artifactId>maven-core</artifactId>
|
| 119 | <version>${maven.core.version}</version>
|
| 120 | </dependency>
|
mojahidi | 5c0ab1d | 2017-09-26 17:39:23 +0530 | [diff] [blame] | 121 | <dependency>
|
| 122 | <groupId>junit</groupId>
|
| 123 | <artifactId>junit</artifactId>
|
| 124 | <scope>test</scope>
|
| 125 | </dependency>
|
Skip Wonnell | abe9420 | 2017-08-29 22:39:17 -0500 | [diff] [blame] | 126 | </dependencies>
|
| 127 | </project>
|