Revert "update sdc version"
[sdc.git] / openecomp-be / tools / zusammen-tools / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5
6     <properties>
7
8         <groovy.version>2.4.7</groovy.version>
9         <janino.version>2.7.7</janino.version>
10
11     </properties>
12
13
14
15     <name>openecomp-zusammen-tools</name>
16     <dependencies>
17         <dependency>
18             <groupId>org.openecomp.sdc</groupId>
19             <artifactId>openecomp-sdc-vendor-software-product-api</artifactId>
20             <version>${project.version}</version>
21         </dependency>
22         <dependency>
23             <groupId>com.amdocs.zusammen.plugin</groupId>
24             <artifactId>zusammen-collaboration-cassandra-plugin</artifactId>
25             <version>${zusammen-collaboration-store.version}</version>
26         </dependency>
27         <dependency>
28             <groupId>org.openecomp.sdc</groupId>
29             <artifactId>openecomp-sdc-vendor-software-product-core</artifactId>
30             <version>${project.version}</version>
31         </dependency>
32         <dependency>
33             <groupId>org.openecomp.sdc</groupId>
34             <artifactId>openecomp-sdc-vendor-license-api</artifactId>
35             <version>${project.version}</version>
36         </dependency>
37         <dependency>
38             <groupId>org.openecomp.sdc</groupId>
39             <artifactId>openecomp-sdc-model-impl</artifactId>
40             <version>${project.version}</version>
41         </dependency>
42         <dependency>
43             <groupId>org.openecomp.sdc.core</groupId>
44             <artifactId>openecomp-zusammen-core</artifactId>
45             <version>${project.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>com.amdocs.zusammen.plugin</groupId>
49             <artifactId>zusammen-state-store-cassandra-plugin</artifactId>
50               <version>${zusammen-state-store.version}</version>
51         </dependency>
52         <dependency>
53             <groupId>org.hibernate</groupId>
54             <artifactId>hibernate-validator</artifactId>
55             <version>${hibernate.validator.version}</version>
56         </dependency>
57         <dependency>
58             <groupId>org.openecomp.sdc</groupId>
59             <artifactId>openecomp-sdc-vendor-license-core</artifactId>
60             <version>${project.version}</version>
61         </dependency>
62         <dependency>
63             <groupId>org.openecomp.sdc</groupId>
64             <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId>
65             <version>${project.version}</version>
66         </dependency>
67         <dependency>
68             <groupId>org.testng</groupId>
69             <artifactId>testng</artifactId>
70             <version>${testng.version}</version>
71             <scope>test</scope>
72         </dependency>
73     </dependencies>
74     <artifactId>openecomp-zusammen-tools</artifactId>
75     <groupId>org.openecomp.sdc.core.tools</groupId>
76     <version>1.2.0-SNAPSHOT</version>
77     <parent>
78         <groupId>org.openecomp.sdc</groupId>
79         <artifactId>openecomp-sdc-lib</artifactId>
80         <relativePath>../../lib</relativePath>
81         <version>1.2.0-SNAPSHOT</version>
82     </parent>
83     <!--parent>
84         <groupId>org.openecomp.sdc</groupId>
85         <artifactId>openecomp-sdc</artifactId>
86         <version>1.0-SNAPSHOT</version>
87     </parent-->
88     <build>
89         <plugins>
90
91             <plugin>
92                 <groupId>org.codehaus.mojo</groupId>
93                 <artifactId>license-maven-plugin</artifactId>
94                 <version>1.10</version>
95                 <configuration>
96                     <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
97                     <processStartTag>
98                         ============LICENSE_START=======================================================
99                     </processStartTag>
100                     <processEndTag>
101                         ============LICENSE_END=========================================================
102                     </processEndTag>
103                     <sectionDelimiter>
104                         ================================================================================
105                     </sectionDelimiter>
106                     <licenseName>apache_v2</licenseName>
107                     <inceptionYear>2017</inceptionYear>
108                     <organizationName>AT&amp;T Intellectual Property. All rights reserved.
109                     </organizationName>
110                     <projectName>SDC</projectName>
111                     <canUpdateCopyright>true</canUpdateCopyright>
112                     <canUpdateDescription>true</canUpdateDescription>
113                     <canUpdateLicense>true</canUpdateLicense>
114                     <emptyLineAfterHeader>true</emptyLineAfterHeader>
115                     <verbose>false</verbose>
116                     <includes>
117                         <include>**/*.java</include>
118                         <include>**/*.js</include>
119                         <include>**/*.ts</include>
120                     </includes>
121                     <roots>
122                         <root>src</root>
123                         <root>app</root>
124                         <root>server-mock</root>
125                         <root>typings</root>
126                     </roots>
127                 </configuration>
128                 <executions>
129                     <execution>
130                         <id>first</id>
131                         <goals>
132                             <goal>update-file-header</goal>
133                         </goals>
134                         <!--phase>process-sources</phase-->
135                     </execution>
136                 </executions>
137             </plugin>
138
139             <plugin>
140                 <groupId>org.apache.maven.plugins</groupId>
141                 <artifactId>maven-dependency-plugin</artifactId>
142                 <version>2.8</version>
143                 <executions>
144                     <execution>
145                         <id>copy-dependencies</id>
146                         <phase>install</phase>
147                         <goals>
148                             <goal>copy-dependencies</goal>
149                         </goals>
150                         <configuration>
151                             <outputDirectory>${project.build.directory}/lib</outputDirectory>
152                             <overWriteReleases>false</overWriteReleases>
153                             <overWriteSnapshots>false</overWriteSnapshots>
154                             <overWriteIfNewer>true</overWriteIfNewer>
155                             <!--includeScope>runtime</includeScope-->
156                         </configuration>
157                     </execution>
158                 </executions>
159             </plugin>
160
161             <plugin>
162                 <groupId>org.apache.maven.plugins</groupId>
163                 <artifactId>maven-jar-plugin</artifactId>
164                 <version>2.4</version>
165                 <configuration>
166                     <outputDirectory>${project.build.directory}/lib</outputDirectory>
167                 </configuration>
168             </plugin>
169
170             <plugin>
171                 <groupId>org.apache.maven.plugins</groupId>
172                 <artifactId>maven-antrun-plugin</artifactId>
173                 <executions>
174                     <execution>
175                         <id>ant-test</id>
176                         <phase>package</phase>
177                         <configuration>
178                             <tasks>
179                                 <fixcrlf srcdir="./" eol="unix"
180                                          includes="zusammenMainTool.sh"/>
181                             </tasks>
182                         </configuration>
183                         <goals>
184                             <goal>run</goal>
185                         </goals>
186                     </execution>
187                 </executions>
188             </plugin>
189             <plugin>
190                 <artifactId>maven-assembly-plugin</artifactId>
191                 <executions>
192                     <execution>
193                         <id>Generate assembly</id>
194                         <phase>install</phase>
195                         <goals>
196                             <goal>single</goal>
197                         </goals>
198                     </execution>
199                 </executions>
200                 <configuration>
201                     <descriptors>
202                         <descriptor>${basedir}/src/main/assembly/zusammen-tools-lib-assembly.xml
203                         </descriptor>
204                     </descriptors>
205                     <appendAssemblyId>false</appendAssemblyId>
206                     <finalName>openecomp-zusammen-tools-lib</finalName>
207                 </configuration>
208             </plugin>
209
210         </plugins>
211     </build>
212
213 </project>