Skip to content

Commit a160717

Browse files
Use notimestamp in Javadoc Plugin to disable timestamps in Javadocs (#1538)
1 parent 8803e0b commit a160717

File tree

8 files changed

+22
-0
lines changed

8 files changed

+22
-0
lines changed

dapr-spring/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,9 @@
187187
<groupId>org.apache.maven.plugins</groupId>
188188
<artifactId>maven-javadoc-plugin</artifactId>
189189
<version>3.2.0</version>
190+
<configuration>
191+
<notimestamp>true</notimestamp>
192+
</configuration>
190193
<executions>
191194
<execution>
192195
<id>attach-javadocs</id>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -610,6 +610,7 @@
610610
<failOnWarnings>false</failOnWarnings>
611611
<failOnError>true</failOnError>
612612
<goal>site</goal>
613+
<notimestamp>true</notimestamp>
613614
<excludePackageNames>io.dapr.examples:io.dapr.springboot:io.dapr.examples.*:io.dapr.springboot.*
614615
</excludePackageNames>
615616
</configuration>

sdk-actors/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@
8686
<groupId>org.apache.maven.plugins</groupId>
8787
<artifactId>maven-javadoc-plugin</artifactId>
8888
<version>3.2.0</version>
89+
<configuration>
90+
<notimestamp>true</notimestamp>
91+
</configuration>
8992
<executions>
9093
<execution>
9194
<id>attach-javadocs</id>

sdk-autogen/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,9 @@
176176
<groupId>org.apache.maven.plugins</groupId>
177177
<artifactId>maven-javadoc-plugin</artifactId>
178178
<version>3.2.0</version>
179+
<configuration>
180+
<notimestamp>true</notimestamp>
181+
</configuration>
179182
<executions>
180183
<execution>
181184
<id>attach-javadocs</id>

sdk-springboot/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@
9797
<groupId>org.apache.maven.plugins</groupId>
9898
<artifactId>maven-javadoc-plugin</artifactId>
9999
<version>3.7.0</version>
100+
<configuration>
101+
<notimestamp>true</notimestamp>
102+
</configuration>
100103
<executions>
101104
<execution>
102105
<id>attach-javadocs</id>

sdk-workflows/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@
100100
<groupId>org.apache.maven.plugins</groupId>
101101
<artifactId>maven-javadoc-plugin</artifactId>
102102
<version>3.2.0</version>
103+
<configuration>
104+
<notimestamp>true</notimestamp>
105+
</configuration>
103106
<executions>
104107
<execution>
105108
<id>attach-javadocs</id>

sdk/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,9 @@
182182
<groupId>org.apache.maven.plugins</groupId>
183183
<artifactId>maven-javadoc-plugin</artifactId>
184184
<version>3.2.0</version>
185+
<configuration>
186+
<notimestamp>true</notimestamp>
187+
</configuration>
185188
<executions>
186189
<execution>
187190
<id>attach-javadocs</id>

testcontainers-dapr/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@
5656
<plugin>
5757
<groupId>org.apache.maven.plugins</groupId>
5858
<artifactId>maven-javadoc-plugin</artifactId>
59+
<configuration>
60+
<notimestamp>true</notimestamp>
61+
</configuration>
5962
<executions>
6063
<execution>
6164
<id>attach-javadocs</id>

0 commit comments

Comments
 (0)