Skip to content

Commit 08652db

Browse files
Bring DurableTask Client to the same Maven standards. (#1618)
Signed-off-by: Artur Ciocanu <[email protected]>
1 parent 8f11972 commit 08652db

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

durabletask-client/pom.xml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,16 @@
77
<groupId>io.dapr</groupId>
88
<artifactId>dapr-sdk-parent</artifactId>
99
<version>1.17.0-SNAPSHOT</version>
10+
<relativePath>../pom.xml</relativePath>
1011
</parent>
1112

1213
<artifactId>durabletask-client</artifactId>
14+
<packaging>jar</packaging>
15+
<name>durabletask-client</name>
16+
<description>Durable Task Client for Dapr Workflows</description>
1317

1418
<properties>
19+
<maven.deploy.skip>false</maven.deploy.skip>
1520
<protobuf.output.directory>${project.build.directory}/generated-sources</protobuf.output.directory>
1621
<protobuf.input.directory>${project.build.directory}/proto</protobuf.input.directory>
1722
</properties>
@@ -67,6 +72,7 @@
6772
<dependency>
6873
<groupId>org.testcontainers</groupId>
6974
<artifactId>testcontainers</artifactId>
75+
<scope>test</scope>
7076
</dependency>
7177
</dependencies>
7278
<build>
@@ -85,7 +91,7 @@
8591
<plugin>
8692
<groupId>com.googlecode.maven-download-plugin</groupId>
8793
<artifactId>download-maven-plugin</artifactId>
88-
<version>1.6.0</version>
94+
<version>${download-maven-plugin.version}</version>
8995
<executions>
9096
<execution>
9197
<id>getDaprProto</id>
@@ -105,7 +111,7 @@
105111
<plugin>
106112
<groupId>org.xolstice.maven.plugins</groupId>
107113
<artifactId>protobuf-maven-plugin</artifactId>
108-
<version>0.6.1</version>
114+
<version>${protobuf-maven-plugin.version}</version>
109115
<configuration>
110116
<protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}</protocArtifact>
111117
<pluginId>grpc-java</pluginId>
@@ -124,7 +130,6 @@
124130
<plugin>
125131
<groupId>org.apache.maven.plugins</groupId>
126132
<artifactId>maven-source-plugin</artifactId>
127-
<version>3.2.1</version>
128133
<executions>
129134
<execution>
130135
<id>attach-sources</id>
@@ -137,7 +142,6 @@
137142
<plugin>
138143
<groupId>org.apache.maven.plugins</groupId>
139144
<artifactId>maven-javadoc-plugin</artifactId>
140-
<version>3.2.0</version>
141145
<configuration>
142146
<notimestamp>true</notimestamp>
143147
</configuration>

0 commit comments

Comments
 (0)