|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + ~ Copyright © 2019 CDAP |
| 4 | + ~ |
| 5 | + ~ Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 6 | + ~ use this file except in compliance with the License. You may obtain a copy of |
| 7 | + ~ the License at |
| 8 | + ~ |
| 9 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | + ~ |
| 11 | + ~ Unless required by applicable law or agreed to in writing, software |
| 12 | + ~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 13 | + ~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 14 | + ~ License for the specific language governing permissions and limitations under |
| 15 | + ~ the License. |
| 16 | + --> |
| 17 | + |
2 | 18 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
3 | 19 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
7 | 23 | <groupId>com.example</groupId> |
8 | 24 | <artifactId>simple-udds</artifactId> |
9 | 25 | <name>Simple User Defined Directives</name> |
10 | | - <version>1.0-SNAPSHOT</version> |
| 26 | + <version>1.1.0</version> |
11 | 27 | <packaging>jar</packaging> |
12 | 28 |
|
13 | 29 | <properties> |
|
16 | 32 | <docs.dir>docs</docs.dir> |
17 | 33 | <!-- this is here because project.basedir evaluates to null in the script build step --> |
18 | 34 | <main.basedir>${project.basedir}</main.basedir> |
19 | | - <cdap.version>4.3.1</cdap.version> |
20 | | - <wrangler.version>3.0.1</wrangler.version> |
| 35 | + <cdap.version>6.0.0-SNAPSHOT</cdap.version> |
| 36 | + <wrangler.version>4.0.0</wrangler.version> |
21 | 37 | <commons.codec.version>1.10</commons.codec.version> |
22 | 38 | <junit.version>4.12</junit.version> |
23 | 39 | </properties> |
24 | 40 |
|
| 41 | + <licenses> |
| 42 | + <license> |
| 43 | + <name>The Apache Software License, Version 2.0</name> |
| 44 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 45 | + </license> |
| 46 | + </licenses> |
| 47 | + |
| 48 | + <developers> |
| 49 | + <developer> |
| 50 | + <name>CDAP</name> |
| 51 | + <email>cdap-dev@googlegroups.com</email> |
| 52 | + <organization>CDAP</organization> |
| 53 | + <organizationUrl>http://cdap.io</organizationUrl> |
| 54 | + </developer> |
| 55 | + </developers> |
| 56 | + |
| 57 | + <issueManagement> |
| 58 | + <url>https://issues.cask.co/browse/CDAP</url> |
| 59 | + </issueManagement> |
| 60 | + |
25 | 61 | <distributionManagement> |
26 | 62 | <repository> |
27 | 63 | <id>sonatype.release</id> |
|
45 | 81 | <!-- Core Dependencies --> |
46 | 82 |
|
47 | 83 | <dependency> |
48 | | - <groupId>co.cask.wrangler</groupId> |
| 84 | + <groupId>io.cdap.wrangler</groupId> |
49 | 85 | <artifactId>wrangler-api</artifactId> |
50 | 86 | <version>${wrangler.version}</version> |
51 | 87 | <scope>provided</scope> |
52 | 88 | </dependency> |
53 | 89 | <dependency> |
54 | | - <groupId>co.cask.cdap</groupId> |
| 90 | + <groupId>io.cdap.cdap</groupId> |
55 | 91 | <artifactId>cdap-api</artifactId> |
56 | 92 | <version>${cdap.version}</version> |
57 | 93 | <scope>provided</scope> |
58 | 94 | </dependency> |
59 | 95 | <dependency> |
60 | | - <groupId>co.cask.cdap</groupId> |
| 96 | + <groupId>io.cdap.cdap</groupId> |
61 | 97 | <artifactId>cdap-etl-api</artifactId> |
62 | 98 | <version>${cdap.version}</version> |
63 | 99 | <scope>provided</scope> |
|
73 | 109 |
|
74 | 110 | <!-- Testing Dependencies --> |
75 | 111 | <dependency> |
76 | | - <groupId>co.cask.wrangler</groupId> |
| 112 | + <groupId>io.cdap.wrangler</groupId> |
77 | 113 | <artifactId>wrangler-test</artifactId> |
78 | 114 | <version>${wrangler.version}</version> |
79 | 115 | <scope>test</scope> |
|
139 | 175 | <artifactId>maven-antrun-plugin</artifactId> |
140 | 176 | </plugin> |
141 | 177 | <plugin> |
142 | | - <groupId>co.cask</groupId> |
| 178 | + <groupId>io.cdap</groupId> |
143 | 179 | <artifactId>cdap-maven-plugin</artifactId> |
144 | | - <version>1.0.1</version> |
| 180 | + <version>1.1.0</version> |
145 | 181 | <configuration> |
146 | 182 | <cdapArtifacts> |
147 | | - <parent>system:wrangler-transform[3.0.0,10.0.0)</parent> |
| 183 | + <parent>system:wrangler-transform[4.0.0,5.0.0)</parent> |
148 | 184 | </cdapArtifacts> |
149 | 185 | </configuration> |
150 | 186 | <executions> |
|
0 commit comments