blob: 7c1ba1a47fe9a53cd8944b3ea41bf7a594424396 [file] [log] [blame]
ChrisC025301d2017-01-31 11:40:03 +01001<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 <parent>
Rob Daugherty9de3ce02017-08-04 12:15:51 -04005 <groupId>org.openecomp.so</groupId>
ChrisC025301d2017-01-31 11:40:03 +01006 <artifactId>adapters</artifactId>
ChrisC1ba1d192017-03-13 05:01:04 -07007 <version>1.1.0-SNAPSHOT</version>
ChrisC025301d2017-01-31 11:40:03 +01008 </parent>
Rob Daugherty9de3ce02017-08-04 12:15:51 -04009 <groupId>org.openecomp.so.adapters</groupId>
ChrisC025301d2017-01-31 11:40:03 +010010 <artifactId>mso-sdnc-adapter</artifactId>
11 <packaging>war</packaging>
12 <name>mso-sdnc-adapter</name>
13 <description>mso sdnc adapter</description>
14
15 <build>
16 <finalName>${project.artifactId}-${project.version}</finalName>
17 <plugins>
ChrisC1ba1d192017-03-13 05:01:04 -070018
ChrisC025301d2017-01-31 11:40:03 +010019 <plugin>
20 <artifactId>maven-war-plugin</artifactId>
21 <version>2.4</version>
22 <configuration>
23 <warSourceDirectory>${basedir}/WebContent</warSourceDirectory>
24 <failOnMissingWebXml>false</failOnMissingWebXml>
25 <attachClasses>true</attachClasses>
26 </configuration>
27 </plugin>
28<!-- <plugin> -->
29<!-- <groupId>org.jboss.as.plugins</groupId> -->
30<!-- <artifactId>jboss-as-maven-plugin</artifactId> -->
31<!-- <version>7.6.Final</version> -->
32<!-- <configuration> -->
33<!-- <force>true</force> -->
34<!-- <port>${jboss.port}</port> -->
35<!-- <hostname>${jboss.hostname}</hostname> -->
36<!-- <username>${jboss.username}</username> -->
37<!-- <password>${jboss.password}</password> -->
38<!-- <ignoreMissingDeployment>true</ignoreMissingDeployment> -->
39<!-- <domain> -->
40<!-- <server-groups> -->
41<!-- <server-group>server-group-one</server-group> -->
42<!-- <server-group>server-group-two</server-group> -->
43<!-- </server-groups> -->
44<!-- </domain> -->
45<!-- <fileNames> -->
46<!-- <fileName>target/${project.build.finalName}.${project.packaging}</fileName> -->
47<!-- </fileNames> -->
48<!-- </configuration> -->
49<!-- <executions> -->
50<!-- <execution> -->
51<!-- <id>undeploy</id> -->
52<!-- <phase>clean</phase> -->
53<!-- <goals> -->
54<!-- <goal>undeploy</goal> -->
55<!-- </goals> -->
56<!-- </execution> -->
57<!-- <execution> -->
58<!-- <id>deploy</id> -->
59<!-- <phase>install</phase> -->
60<!-- <goals> -->
61<!-- <goal>deploy</goal> -->
62<!-- </goals> -->
63<!-- </execution> -->
64<!-- </executions> -->
65<!-- </plugin> -->
66 </plugins>
67 </build>
68 <dependencies>
69 <dependency>
Rob Daugherty9de3ce02017-08-04 12:15:51 -040070 <groupId>org.openecomp.so.adapters</groupId>
ChrisC025301d2017-01-31 11:40:03 +010071 <artifactId>mso-adapter-utils</artifactId>
72 <version>${project.version}</version>
ChrisC1ba1d192017-03-13 05:01:04 -070073
ChrisC025301d2017-01-31 11:40:03 +010074 </dependency>
75 <dependency>
76 <groupId>javax</groupId>
77 <artifactId>javaee-web-api</artifactId>
78 <version>6.0</version>
79 <scope>provided</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.jboss.spec.javax.ejb</groupId>
83 <artifactId>jboss-ejb-api_3.2_spec</artifactId>
84 <version>1.0.0.Final</version>
85 <scope>provided</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.jboss.ejb3</groupId>
89 <artifactId>jboss-ejb3-ext-api</artifactId>
90 <version>2.2.0.Final</version>
91 <scope>provided</scope>
92 </dependency>
93 <dependency>
Rob Daugherty9de3ce02017-08-04 12:15:51 -040094 <groupId>org.openecomp.so</groupId>
ChrisC025301d2017-01-31 11:40:03 +010095 <artifactId>status-control</artifactId>
96 <version>${project.version}</version>
97 </dependency>
98 <dependency>
Rob Daugherty9de3ce02017-08-04 12:15:51 -040099 <groupId>org.openecomp.so.adapters</groupId>
ChrisC025301d2017-01-31 11:40:03 +0100100 <artifactId>mso-adapters-rest-interface</artifactId>
101 <version>${project.version}</version>
102 </dependency>
xg353yb6b7bef2017-04-11 13:30:42 +0200103 <!-- For UriUtils which does URL encoding according to RFC 3986 Section 2 -->
104 <dependency>
105 <groupId>org.springframework</groupId>
106 <artifactId>spring-web</artifactId>
107 <version>4.3.2.RELEASE</version>
108 </dependency>
ChrisC025301d2017-01-31 11:40:03 +0100109 </dependencies>
110</project>