|
7 | 7 | <groupId>io.dapr</groupId> |
8 | 8 | <artifactId>dapr-sdk-parent</artifactId> |
9 | 9 | <version>1.17.0-SNAPSHOT</version> |
| 10 | + <relativePath>../pom.xml</relativePath> |
10 | 11 | </parent> |
11 | 12 |
|
12 | 13 | <artifactId>durabletask-client</artifactId> |
| 14 | + <packaging>jar</packaging> |
| 15 | + <name>durabletask-client</name> |
| 16 | + <description>Durable Task Client for Dapr Workflows</description> |
13 | 17 |
|
14 | 18 | <properties> |
| 19 | + <maven.deploy.skip>false</maven.deploy.skip> |
15 | 20 | <protobuf.output.directory>${project.build.directory}/generated-sources</protobuf.output.directory> |
16 | 21 | <protobuf.input.directory>${project.build.directory}/proto</protobuf.input.directory> |
17 | 22 | </properties> |
|
67 | 72 | <dependency> |
68 | 73 | <groupId>org.testcontainers</groupId> |
69 | 74 | <artifactId>testcontainers</artifactId> |
| 75 | + <scope>test</scope> |
70 | 76 | </dependency> |
71 | 77 | </dependencies> |
72 | 78 | <build> |
|
85 | 91 | <plugin> |
86 | 92 | <groupId>com.googlecode.maven-download-plugin</groupId> |
87 | 93 | <artifactId>download-maven-plugin</artifactId> |
88 | | - <version>1.6.0</version> |
| 94 | + <version>${download-maven-plugin.version}</version> |
89 | 95 | <executions> |
90 | 96 | <execution> |
91 | 97 | <id>getDaprProto</id> |
|
105 | 111 | <plugin> |
106 | 112 | <groupId>org.xolstice.maven.plugins</groupId> |
107 | 113 | <artifactId>protobuf-maven-plugin</artifactId> |
108 | | - <version>0.6.1</version> |
| 114 | + <version>${protobuf-maven-plugin.version}</version> |
109 | 115 | <configuration> |
110 | 116 | <protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}</protocArtifact> |
111 | 117 | <pluginId>grpc-java</pluginId> |
|
124 | 130 | <plugin> |
125 | 131 | <groupId>org.apache.maven.plugins</groupId> |
126 | 132 | <artifactId>maven-source-plugin</artifactId> |
127 | | - <version>3.2.1</version> |
128 | 133 | <executions> |
129 | 134 | <execution> |
130 | 135 | <id>attach-sources</id> |
|
137 | 142 | <plugin> |
138 | 143 | <groupId>org.apache.maven.plugins</groupId> |
139 | 144 | <artifactId>maven-javadoc-plugin</artifactId> |
140 | | - <version>3.2.0</version> |
141 | 145 | <configuration> |
142 | 146 | <notimestamp>true</notimestamp> |
143 | 147 | </configuration> |
|
0 commit comments