Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 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> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 5 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 6 | <parent> |
| 7 | <groupId>org.onap.dcaegen2.services.components</groupId> |
| 8 | <artifactId>datalake-handler</artifactId> |
| 9 | <version>1.0.0-SNAPSHOT</version> |
| 10 | </parent> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 11 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 12 | <groupId>org.onap.dcaegen2.services.components.datalake-handler</groupId> |
| 13 | <artifactId>feeder</artifactId> |
| 14 | <packaging>jar</packaging> |
| 15 | <name>DataLake Feeder</name> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 16 | |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 17 | <properties> |
| 18 | <swagger.version>2.9.2</swagger.version> |
Guobiao Mo | 194d514 | 2020-01-09 13:39:05 -0800 | [diff] [blame] | 19 | <dockerfile-maven.version>1.4.5</dockerfile-maven.version> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 20 | <docker.image.path>onap/org.onap.dcaegen2.services.datalakefeeder</docker.image.path> |
Kate Hsuan | 3cf3f3e | 2020-03-12 07:48:48 +0000 | [diff] [blame^] | 21 | <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format> |
| 22 | |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 23 | </properties> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 24 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 25 | <dependencies> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 26 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 27 | <dependency> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 28 | <groupId>org.jdom</groupId> |
| 29 | <artifactId>jdom2</artifactId> |
| 30 | <version>2.0.6</version> |
| 31 | </dependency> |
| 32 | |
| 33 | <dependency> |
| 34 | <groupId>com.facebook.presto</groupId> |
| 35 | <artifactId>presto-jdbc</artifactId> |
| 36 | <version>0.229</version> |
| 37 | </dependency> |
| 38 | |
| 39 | <dependency> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 40 | <groupId>org.apache.hadoop</groupId> |
| 41 | <artifactId>hadoop-client</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 42 | <version>${hadoop.version}</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 43 | </dependency> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 44 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 45 | <dependency> |
| 46 | <groupId>org.mariadb.jdbc</groupId> |
| 47 | <artifactId>mariadb-java-client</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 48 | <version>2.4.1</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 49 | </dependency> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 50 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 51 | <dependency> |
| 52 | <groupId>org.json</groupId> |
| 53 | <artifactId>json</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 54 | <version>20190722</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 55 | </dependency> |
Rama-Huawei | 82b82f1 | 2019-04-22 14:17:50 +0530 | [diff] [blame] | 56 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 57 | <dependency> |
| 58 | <groupId>org.apache.httpcomponents</groupId> |
| 59 | <artifactId>httpclient</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 60 | <version>4.5.10</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 61 | </dependency> |
Rama-Huawei | 82b82f1 | 2019-04-22 14:17:50 +0530 | [diff] [blame] | 62 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 63 | <dependency> |
| 64 | <groupId>org.apache.kafka</groupId> |
| 65 | <artifactId>kafka-clients</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 66 | <version>2.3.1</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 67 | </dependency> |
Rama-Huawei | 82b82f1 | 2019-04-22 14:17:50 +0530 | [diff] [blame] | 68 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 69 | <dependency> |
| 70 | <groupId>org.springframework.boot</groupId> |
| 71 | <artifactId>spring-boot-starter-web</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 72 | <version>${springboot.version}</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 73 | </dependency> |
Rama-Huawei | 82b82f1 | 2019-04-22 14:17:50 +0530 | [diff] [blame] | 74 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 75 | <dependency> |
| 76 | <groupId>org.springframework.boot</groupId> |
| 77 | <artifactId>spring-boot-starter-actuator</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 78 | <version>${springboot.version}</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 79 | </dependency> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 80 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 81 | <dependency> |
| 82 | <groupId>org.springframework.boot</groupId> |
| 83 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 84 | <version>${springboot.version}</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 85 | </dependency> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 86 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 87 | <dependency> |
| 88 | <groupId>org.springframework.boot</groupId> |
| 89 | <artifactId>spring-boot-starter-data-couchbase</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 90 | <version>${springboot.version}</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 91 | </dependency> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 92 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 93 | <dependency> |
| 94 | <groupId>org.springframework.boot</groupId> |
| 95 | <artifactId>spring-boot-starter-test</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 96 | <version>${springboot.version}</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 97 | <scope>test</scope> |
| 98 | </dependency> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 99 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 100 | <dependency> |
| 101 | <groupId>org.springframework.boot</groupId> |
| 102 | <artifactId>spring-boot-configuration-processor</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 103 | <version>${springboot.version}</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 104 | </dependency> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 105 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 106 | <dependency> |
| 107 | <groupId>org.elasticsearch.client</groupId> |
| 108 | <artifactId>elasticsearch-rest-high-level-client</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 109 | <version>${elasticsearchjava.version}</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 110 | </dependency> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 111 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 112 | <dependency> |
| 113 | <groupId>commons-io</groupId> |
| 114 | <artifactId>commons-io</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 115 | <version>2.6</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 116 | </dependency> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 117 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 118 | <dependency> |
| 119 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 120 | <artifactId>jackson-dataformat-yaml</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 121 | <version>${jackson.version}</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 122 | </dependency> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 123 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 124 | <dependency> |
| 125 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 126 | <artifactId>jackson-dataformat-xml</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 127 | <version>${jackson.version}</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 128 | </dependency> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 129 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 130 | <dependency> |
| 131 | <groupId>com.fasterxml.jackson.core</groupId> |
| 132 | <artifactId>jackson-databind</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 133 | <version>${jackson.version}</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 134 | </dependency> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 135 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 136 | <dependency> |
| 137 | <groupId>com.google.code.gson</groupId> |
| 138 | <artifactId>gson</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 139 | <version>2.8.2</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 140 | </dependency> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 141 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 142 | <dependency> |
| 143 | <groupId>org.projectlombok</groupId> |
| 144 | <artifactId>lombok</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 145 | <version>1.18.10</version> |
| 146 | <scope>provided</scope> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 147 | </dependency> |
Rama-Huawei | 82b82f1 | 2019-04-22 14:17:50 +0530 | [diff] [blame] | 148 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 149 | <dependency> |
| 150 | <groupId>io.druid</groupId> |
| 151 | <artifactId>tranquility-core_2.11</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 152 | <version>0.8.3</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 153 | </dependency> |
| 154 | |
| 155 | <dependency> |
| 156 | <groupId>org.apache.velocity</groupId> |
| 157 | <artifactId>velocity-engine-core</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 158 | <version>2.1</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 159 | </dependency> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 160 | |
| 161 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 162 | <dependency> |
| 163 | <groupId>org.hibernate</groupId> |
| 164 | <artifactId>hibernate-core</artifactId> |
| 165 | <version>5.3.7.Final</version> |
| 166 | </dependency> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 167 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 168 | <!-- jsr303 validation --> |
| 169 | <dependency> |
| 170 | <groupId>javax.validation</groupId> |
| 171 | <artifactId>validation-api</artifactId> |
| 172 | <version>2.0.1.Final</version> |
| 173 | </dependency> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 174 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 175 | <dependency> |
| 176 | <groupId>org.hibernate</groupId> |
| 177 | <artifactId>hibernate-validator</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 178 | <version>6.1.0.Final</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 179 | </dependency> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 180 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 181 | <dependency> |
| 182 | <groupId>io.springfox</groupId> |
| 183 | <artifactId>springfox-swagger2</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 184 | <version>${swagger.version}</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 185 | <scope>compile</scope> |
| 186 | </dependency> |
Guobiao Mo | 1995d2e | 2019-04-08 16:59:14 -0700 | [diff] [blame] | 187 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 188 | <dependency> |
| 189 | <groupId>io.springfox</groupId> |
| 190 | <artifactId>springfox-swagger-ui</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 191 | <version>${swagger.version}</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 192 | <scope>compile</scope> |
| 193 | </dependency> |
Guobiao Mo | 1995d2e | 2019-04-08 16:59:14 -0700 | [diff] [blame] | 194 | |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 195 | <dependency> |
| 196 | <groupId>org.mongodb</groupId> |
| 197 | <artifactId>mongo-java-driver</artifactId> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 198 | <version>${mongojava.version}</version> |
Guobiao Mo | 3208e0c | 2019-05-13 11:58:33 -0700 | [diff] [blame] | 199 | </dependency> |
| 200 | <dependency> |
| 201 | <groupId>com.couchbase.mock</groupId> |
| 202 | <artifactId>CouchbaseMock</artifactId> |
| 203 | <version>1.5.22</version> |
| 204 | <scope>test</scope> |
| 205 | </dependency> |
| 206 | </dependencies> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 207 | |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 208 | |
| 209 | <build> |
| 210 | <plugins> |
| 211 | <plugin> |
| 212 | <groupId>com.spotify</groupId> |
| 213 | <artifactId>dockerfile-maven-plugin</artifactId> |
| 214 | <version>${dockerfile-maven.version}</version> |
Guobiao Mo | 194d514 | 2020-01-09 13:39:05 -0800 | [diff] [blame] | 215 | <configuration> |
| 216 | <!-- |
| 217 | <username>docker</username> |
| 218 | <password>docker</password> --> |
| 219 | <!-- repository>repo.treescale.com/moguobiao/datalake-feeder-maven</repository --> |
| 220 | <!-- repository>moguobiao/datalake-feeder-maven-spotify</repository --> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 221 | <repository>${onap.nexus.dockerregistry.daily}/${docker.image.path}</repository> |
| 222 | <tag>${project.version}</tag> |
| 223 | <dockerfile>Dockerfile</dockerfile> |
Guobiao Mo | 194d514 | 2020-01-09 13:39:05 -0800 | [diff] [blame] | 224 | <!-- useMavenSettingsForAuth>true</useMavenSettingsForAuth --> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 225 | <buildArgs> |
| 226 | <JAR_FILE>${project.build.finalName}.jar</JAR_FILE> |
| 227 | </buildArgs> |
| 228 | </configuration> |
Kate Hsuan | 3cf3f3e | 2020-03-12 07:48:48 +0000 | [diff] [blame^] | 229 | <executions> |
| 230 | <execution> |
| 231 | <id>build-sl-feeder-image</id> |
| 232 | <phase>package</phase> |
| 233 | <goals> |
| 234 | <goal>build</goal> |
| 235 | </goals> |
| 236 | </execution> |
| 237 | <execution> |
| 238 | <id>tag-and-push-image-latest</id> |
| 239 | <phase>package</phase> |
| 240 | <goals> |
| 241 | <goal>tag</goal> |
| 242 | <goal>push</goal> |
| 243 | </goals> |
| 244 | <configuration> |
| 245 | <repository>${onap.nexus.dockerregistry.daily}/${docker.image.path}</repository> |
| 246 | <tag>latest</tag> |
| 247 | <useMavenSettingsForAuth>true</useMavenSettingsForAuth> |
| 248 | </configuration> |
| 249 | </execution> |
| 250 | <execution> |
| 251 | <id>tag-and-push-image-with-version</id> |
| 252 | <phase>package</phase> |
| 253 | <goals> |
| 254 | <goal>tag</goal> |
| 255 | <goal>push</goal> |
| 256 | </goals> |
| 257 | <configuration> |
| 258 | <repository>${onap.nexus.dockerregistry.daily}/${docker.image.path}</repository> |
| 259 | <tag>${project.version}</tag> |
| 260 | <useMavenSettingsForAuth>true</useMavenSettingsForAuth> |
| 261 | </configuration> |
| 262 | </execution> |
| 263 | <execution> |
| 264 | <id>tag-and-push-image-with-version-and-date</id> |
| 265 | <phase>package</phase> |
| 266 | <goals> |
| 267 | <goal>tag</goal> |
| 268 | <goal>push</goal> |
| 269 | </goals> |
| 270 | <configuration> |
| 271 | <repository>${onap.nexus.dockerregistry.daily}/${docker.image.path}</repository> |
| 272 | <tag>${project.version}-${maven.build.timestamp}Z</tag> |
| 273 | <useMavenSettingsForAuth>true</useMavenSettingsForAuth> |
| 274 | </configuration> |
| 275 | </execution> |
| 276 | </executions> |
Guobiao Mo | 194d514 | 2020-01-09 13:39:05 -0800 | [diff] [blame] | 277 | <dependencies> |
| 278 | <!-- To make this work on JDK 9+ --> |
| 279 | <dependency> |
| 280 | <groupId>javax.activation</groupId> |
| 281 | <artifactId>javax.activation-api</artifactId> |
| 282 | <version>1.2.0</version> |
| 283 | </dependency> |
| 284 | </dependencies> |
Guobiao Mo | 6670cf9 | 2020-01-06 17:11:43 -0800 | [diff] [blame] | 285 | </plugin> |
| 286 | </plugins> |
| 287 | </build> |
Guobiao Mo | da70376 | 2019-02-22 15:36:27 -0800 | [diff] [blame] | 288 | </project> |