ATT default cloud user | 17b1b97 | 2017-08-31 21:34:47 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 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 | <modelVersion>4.0.0</modelVersion> |
| 4 | <groupId>org.onap.dmaap.buscontroller</groupId> |
| 5 | <artifactId>buscontroller</artifactId> |
| 6 | <version>${artifact.version}</version> |
| 7 | <name>buscontroller</name> |
ATT default cloud user | 19c5178 | 2017-09-01 22:03:23 +0000 | [diff] [blame^] | 8 | <parent> |
| 9 | <groupId>org.onap.oparent</groupId> |
| 10 | <artifactId>oparent</artifactId> |
| 11 | <version>0.1.0</version> |
| 12 | </parent> |
ATT default cloud user | 17b1b97 | 2017-08-31 21:34:47 +0000 | [diff] [blame] | 13 | <build> |
| 14 | <finalName>buscontroller</finalName> |
| 15 | |
| 16 | <plugins> |
ATT default cloud user | 17b1b97 | 2017-08-31 21:34:47 +0000 | [diff] [blame] | 17 | |
| 18 | </plugins> |
| 19 | <pluginManagement> |
| 20 | <plugins> |
| 21 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 22 | <plugin> |
| 23 | <groupId>org.eclipse.m2e</groupId> |
| 24 | <artifactId>lifecycle-mapping</artifactId> |
| 25 | <version>1.0.0</version> |
| 26 | <configuration> |
| 27 | <lifecycleMappingMetadata> |
| 28 | <pluginExecutions> |
| 29 | <pluginExecution> |
| 30 | <pluginExecutionFilter> |
| 31 | <groupId>org.apache.maven.plugins</groupId> |
| 32 | <artifactId>maven-dependency-plugin</artifactId> |
| 33 | <versionRange>[2.10,)</versionRange> |
| 34 | <goals> |
| 35 | <goal>copy-dependencies</goal> |
| 36 | </goals> |
| 37 | </pluginExecutionFilter> |
| 38 | <action> |
| 39 | <ignore/> |
| 40 | </action> |
| 41 | </pluginExecution> |
| 42 | </pluginExecutions> |
| 43 | </lifecycleMappingMetadata> |
| 44 | </configuration> |
| 45 | </plugin> |
| 46 | </plugins> |
| 47 | </pluginManagement> |
| 48 | </build> |
| 49 | <dependencyManagement> |
| 50 | <dependencies> |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>org.glassfish.jersey</groupId> |
| 54 | <artifactId>jersey-bom</artifactId> |
| 55 | <version>${jersey.version}</version> |
| 56 | <type>pom</type> |
| 57 | <scope>import</scope> |
| 58 | </dependency> |
| 59 | </dependencies> |
| 60 | </dependencyManagement> |
| 61 | <dependencies> |
| 62 | <dependency> |
| 63 | <groupId>io.swagger</groupId> |
| 64 | <artifactId>swagger-core</artifactId> |
| 65 | <version>1.5.13</version> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>io.swagger</groupId> |
| 69 | <artifactId>swagger-jersey2-jaxrs</artifactId> |
| 70 | <version>1.5.13</version> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>io.swagger</groupId> |
| 74 | <artifactId>swagger-annotations</artifactId> |
| 75 | <version>1.5.13</version> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.glassfish.jersey.containers</groupId> |
| 79 | <artifactId>jersey-container-servlet-core</artifactId> |
| 80 | <!-- use the following artifactId if you don't need servlet 2.x compatibility --> |
| 81 | <!-- artifactId>jersey-container-servlet</artifactId --> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.glassfish.jersey.media</groupId> |
| 85 | <artifactId>jersey-media-moxy</artifactId> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>log4j</groupId> |
| 89 | <artifactId>log4j</artifactId> |
| 90 | <version>1.2.17</version> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.eclipse.jetty</groupId> |
| 94 | <artifactId>jetty-server</artifactId> |
| 95 | <version>${jettyVersion}</version> |
| 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>org.eclipse.jetty</groupId> |
| 99 | <artifactId>jetty-servlet</artifactId> |
| 100 | <version>${jettyVersion}</version> |
| 101 | <scope>compile</scope> |
| 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>org.eclipse.jetty</groupId> |
| 105 | <artifactId>jetty-servlets</artifactId> |
| 106 | <version>${jettyVersion}</version> |
| 107 | <scope>compile</scope> |
| 108 | </dependency> |
| 109 | <!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple --> |
| 110 | <dependency> |
| 111 | <groupId>com.googlecode.json-simple</groupId> |
| 112 | <artifactId>json-simple</artifactId> |
| 113 | <version>1.1.1</version> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>commons-codec</groupId> |
| 117 | <artifactId>commons-codec</artifactId> |
| 118 | <version>1.6</version> |
| 119 | </dependency> |
| 120 | <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql --> |
| 121 | <dependency> |
| 122 | <groupId>org.postgresql</groupId> |
| 123 | <artifactId>postgresql</artifactId> |
| 124 | <version>9.4.1208.jre7</version> |
| 125 | </dependency> |
| 126 | <dependency> |
| 127 | <groupId>com.att.eelf</groupId> |
| 128 | <artifactId>eelf-core</artifactId> |
| 129 | <version>${eelf.version}</version> |
| 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>org.onap.dmaap.dbcapi</groupId> |
| 133 | <artifactId>dbcapi</artifactId> |
ATT default cloud user | 19c5178 | 2017-09-01 22:03:23 +0000 | [diff] [blame^] | 134 | <version>1.0.0-SNAPSHOT</version> |
ATT default cloud user | 17b1b97 | 2017-08-31 21:34:47 +0000 | [diff] [blame] | 135 | </dependency> |
| 136 | </dependencies> |
| 137 | <reporting> |
| 138 | <plugins> |
| 139 | <plugin> |
| 140 | <groupId>org.apache.maven.plugins</groupId> |
| 141 | <artifactId>maven-javadoc-plugin</artifactId> |
| 142 | <version>2.10.4</version> |
| 143 | <configuration> |
| 144 | <failOnError>false</failOnError> |
| 145 | <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> |
| 146 | <docletArtifact> |
| 147 | <groupId>org.umlgraph</groupId> |
| 148 | <artifactId>umlgraph</artifactId> |
| 149 | <version>5.6</version> |
| 150 | </docletArtifact> |
| 151 | <additionalparam>-views</additionalparam> |
| 152 | <useStandardDocletOptions>true</useStandardDocletOptions> |
| 153 | </configuration> |
| 154 | </plugin> |
| 155 | </plugins> |
| 156 | </reporting> |
| 157 | <properties> |
| 158 | <jersey.version>2.16</jersey.version> |
| 159 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 160 | <jettyVersion>9.3.7.v20160115</jettyVersion> |
| 161 | <eelf.version>0.0.1</eelf.version> |
| 162 | <artifact.version>1.0.0-SNAPSHOT</artifact.version> |
ATT default cloud user | 19c5178 | 2017-09-01 22:03:23 +0000 | [diff] [blame^] | 163 | <!-- SONAR --> |
| 164 | <jacoco.version>0.7.7.201606060606</jacoco.version> |
| 165 | <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version> |
| 166 | <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin> |
| 167 | <!-- Default Sonar configuration --> |
| 168 | <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath> |
| 169 | <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath> |
| 170 | <!-- Note: This list should match jacoco-maven-plugin's exclusion list below --> |
| 171 | <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions> |
ATT default cloud user | 17b1b97 | 2017-08-31 21:34:47 +0000 | [diff] [blame] | 172 | </properties> |
| 173 | <description>Packaging Platform (DMaaP) Bus Controller API as a Docker container. </description> |
| 174 | </project> |