Skip to content

Commit 6a4faf3

Browse files
committed
Release 0.9.15
1 parent b7cf1b1 commit 6a4faf3

3 files changed

Lines changed: 111 additions & 57 deletions

File tree

jOOR-java-6/pom.xml

Lines changed: 37 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,23 @@
8888
<profiles>
8989
<profile>
9090
<id>release-oss</id>
91+
92+
<!-- Content from deprecated https://search.maven.org/artifact/org.sonatype.oss/oss-parent/9/pom -->
93+
<distributionManagement>
94+
<repository>
95+
<id>sonatype-nexus-staging</id>
96+
<name>Nexus Release Repository</name>
97+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
98+
</repository>
99+
</distributionManagement>
100+
91101
<build>
92102
<plugins>
93103
<plugin>
94-
<inherited>true</inherited>
95104
<groupId>org.apache.maven.plugins</groupId>
96105
<artifactId>maven-source-plugin</artifactId>
97-
<version>2.1.2</version>
106+
<version>3.2.1</version>
107+
<inherited>true</inherited>
98108
<executions>
99109
<execution>
100110
<id>attach-sources</id>
@@ -103,18 +113,17 @@
103113
</goals>
104114
</execution>
105115
</executions>
106-
107116
<configuration>
108117
<excludeResources>true</excludeResources>
109118
<useDefaultExcludes>true</useDefaultExcludes>
110119
</configuration>
111120
</plugin>
112121

113122
<plugin>
114-
<inherited>true</inherited>
115123
<groupId>org.apache.maven.plugins</groupId>
116124
<artifactId>maven-javadoc-plugin</artifactId>
117-
<version>3.0.0-M1</version>
125+
<version>3.5.0</version>
126+
<inherited>true</inherited>
118127
<executions>
119128
<execution>
120129
<id>bundle-sources</id>
@@ -129,9 +138,12 @@
129138
<encoding>UTF-8</encoding>
130139
<show>protected</show>
131140
<notree>true</notree>
141+
<!-- Explicit configuration of javadoc language to avoid defaulting to build system's configuration -->
142+
<locale>en</locale>
132143

133144
<!-- Avoid running into Java 8's very restrictive doclint issues -->
134145
<additionalparam>-Xdoclint:none</additionalparam>
146+
<additionalOptions>-Xdoclint:none</additionalOptions>
135147
</configuration>
136148
</plugin>
137149

@@ -163,7 +175,7 @@
163175
<plugin>
164176
<groupId>com.google.code.maven-replacer-plugin</groupId>
165177
<artifactId>replacer</artifactId>
166-
<version>1.5.2</version>
178+
<version>1.5.3</version>
167179
<executions>
168180
<execution>
169181
<phase>package</phase>
@@ -182,19 +194,18 @@
182194
</includes>
183195
<replacements>
184196
<replacement>
185-
<token><![CDATA[<body>]]></token>
186-
<value><![CDATA[<body>
187-
<script type="text/javascript">
188-
var _gaq = _gaq || [];
189-
_gaq.push(['_setAccount', 'UA-30716479-1']);
190-
_gaq.push(['_trackPageview']);
191-
192-
(function() {
193-
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
194-
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
195-
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
196-
})();
197+
<token><![CDATA[</body>]]></token>
198+
<value><![CDATA[
199+
<!-- Google tag (gtag.js) -->
200+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PB08BGF2SR"></script>
201+
<script>
202+
window.dataLayer = window.dataLayer || [];
203+
function gtag(){dataLayer.push(arguments);}
204+
gtag('js', new Date());
205+
206+
gtag('config', 'G-PB08BGF2SR');
197207
</script>
208+
</body>
198209
]]></value>
199210
</replacement>
200211
</replacements>
@@ -204,21 +215,28 @@
204215
<plugin>
205216
<groupId>org.apache.maven.plugins</groupId>
206217
<artifactId>maven-gpg-plugin</artifactId>
207-
<version>1.1</version>
218+
<version>3.0.1</version>
208219
<executions>
209220
<execution>
210221
<id>sign-artifacts</id>
211222
<phase>verify</phase>
212223
<goals>
213224
<goal>sign</goal>
214225
</goals>
226+
<configuration>
227+
<gpgArguments>
228+
<arg>--pinentry-mode</arg>
229+
<arg>loopback</arg>
230+
</gpgArguments>
231+
</configuration>
215232
</execution>
216233
</executions>
217234
</plugin>
218235
</plugins>
219236
</build>
220237
</profile>
221238
</profiles>
239+
222240
<issueManagement>
223241
<system>GitHub</system>
224242
<url>https://github.com/jOOQ/jOOR/issues</url>

jOOR-java-8/pom.xml

Lines changed: 37 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,23 @@
8888
<profiles>
8989
<profile>
9090
<id>release-oss</id>
91+
92+
<!-- Content from deprecated https://search.maven.org/artifact/org.sonatype.oss/oss-parent/9/pom -->
93+
<distributionManagement>
94+
<repository>
95+
<id>sonatype-nexus-staging</id>
96+
<name>Nexus Release Repository</name>
97+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
98+
</repository>
99+
</distributionManagement>
100+
91101
<build>
92102
<plugins>
93103
<plugin>
94-
<inherited>true</inherited>
95104
<groupId>org.apache.maven.plugins</groupId>
96105
<artifactId>maven-source-plugin</artifactId>
97-
<version>2.1.2</version>
106+
<version>3.2.1</version>
107+
<inherited>true</inherited>
98108
<executions>
99109
<execution>
100110
<id>attach-sources</id>
@@ -103,18 +113,17 @@
103113
</goals>
104114
</execution>
105115
</executions>
106-
107116
<configuration>
108117
<excludeResources>true</excludeResources>
109118
<useDefaultExcludes>true</useDefaultExcludes>
110119
</configuration>
111120
</plugin>
112121

113122
<plugin>
114-
<inherited>true</inherited>
115123
<groupId>org.apache.maven.plugins</groupId>
116124
<artifactId>maven-javadoc-plugin</artifactId>
117-
<version>3.0.0-M1</version>
125+
<version>3.5.0</version>
126+
<inherited>true</inherited>
118127
<executions>
119128
<execution>
120129
<id>bundle-sources</id>
@@ -129,9 +138,12 @@
129138
<encoding>UTF-8</encoding>
130139
<show>protected</show>
131140
<notree>true</notree>
141+
<!-- Explicit configuration of javadoc language to avoid defaulting to build system's configuration -->
142+
<locale>en</locale>
132143

133144
<!-- Avoid running into Java 8's very restrictive doclint issues -->
134145
<additionalparam>-Xdoclint:none</additionalparam>
146+
<additionalOptions>-Xdoclint:none</additionalOptions>
135147
</configuration>
136148
</plugin>
137149

@@ -163,7 +175,7 @@
163175
<plugin>
164176
<groupId>com.google.code.maven-replacer-plugin</groupId>
165177
<artifactId>replacer</artifactId>
166-
<version>1.5.2</version>
178+
<version>1.5.3</version>
167179
<executions>
168180
<execution>
169181
<phase>package</phase>
@@ -182,19 +194,18 @@
182194
</includes>
183195
<replacements>
184196
<replacement>
185-
<token><![CDATA[<body>]]></token>
186-
<value><![CDATA[<body>
187-
<script type="text/javascript">
188-
var _gaq = _gaq || [];
189-
_gaq.push(['_setAccount', 'UA-30716479-1']);
190-
_gaq.push(['_trackPageview']);
191-
192-
(function() {
193-
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
194-
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
195-
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
196-
})();
197+
<token><![CDATA[</body>]]></token>
198+
<value><![CDATA[
199+
<!-- Google tag (gtag.js) -->
200+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PB08BGF2SR"></script>
201+
<script>
202+
window.dataLayer = window.dataLayer || [];
203+
function gtag(){dataLayer.push(arguments);}
204+
gtag('js', new Date());
205+
206+
gtag('config', 'G-PB08BGF2SR');
197207
</script>
208+
</body>
198209
]]></value>
199210
</replacement>
200211
</replacements>
@@ -204,21 +215,28 @@
204215
<plugin>
205216
<groupId>org.apache.maven.plugins</groupId>
206217
<artifactId>maven-gpg-plugin</artifactId>
207-
<version>1.1</version>
218+
<version>3.0.1</version>
208219
<executions>
209220
<execution>
210221
<id>sign-artifacts</id>
211222
<phase>verify</phase>
212223
<goals>
213224
<goal>sign</goal>
214225
</goals>
226+
<configuration>
227+
<gpgArguments>
228+
<arg>--pinentry-mode</arg>
229+
<arg>loopback</arg>
230+
</gpgArguments>
231+
</configuration>
215232
</execution>
216233
</executions>
217234
</plugin>
218235
</plugins>
219236
</build>
220237
</profile>
221238
</profiles>
239+
222240
<issueManagement>
223241
<system>GitHub</system>
224242
<url>https://github.com/jOOQ/jOOR/issues</url>

jOOR/pom.xml

Lines changed: 37 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,23 @@
8888
<profiles>
8989
<profile>
9090
<id>release-oss</id>
91+
92+
<!-- Content from deprecated https://search.maven.org/artifact/org.sonatype.oss/oss-parent/9/pom -->
93+
<distributionManagement>
94+
<repository>
95+
<id>sonatype-nexus-staging</id>
96+
<name>Nexus Release Repository</name>
97+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
98+
</repository>
99+
</distributionManagement>
100+
91101
<build>
92102
<plugins>
93103
<plugin>
94-
<inherited>true</inherited>
95104
<groupId>org.apache.maven.plugins</groupId>
96105
<artifactId>maven-source-plugin</artifactId>
97-
<version>2.1.2</version>
106+
<version>3.2.1</version>
107+
<inherited>true</inherited>
98108
<executions>
99109
<execution>
100110
<id>attach-sources</id>
@@ -103,18 +113,17 @@
103113
</goals>
104114
</execution>
105115
</executions>
106-
107116
<configuration>
108117
<excludeResources>true</excludeResources>
109118
<useDefaultExcludes>true</useDefaultExcludes>
110119
</configuration>
111120
</plugin>
112121

113122
<plugin>
114-
<inherited>true</inherited>
115123
<groupId>org.apache.maven.plugins</groupId>
116124
<artifactId>maven-javadoc-plugin</artifactId>
117-
<version>3.0.0-M1</version>
125+
<version>3.5.0</version>
126+
<inherited>true</inherited>
118127
<executions>
119128
<execution>
120129
<id>bundle-sources</id>
@@ -129,9 +138,12 @@
129138
<encoding>UTF-8</encoding>
130139
<show>protected</show>
131140
<notree>true</notree>
141+
<!-- Explicit configuration of javadoc language to avoid defaulting to build system's configuration -->
142+
<locale>en</locale>
132143

133144
<!-- Avoid running into Java 8's very restrictive doclint issues -->
134145
<additionalparam>-Xdoclint:none</additionalparam>
146+
<additionalOptions>-Xdoclint:none</additionalOptions>
135147
</configuration>
136148
</plugin>
137149

@@ -163,7 +175,7 @@
163175
<plugin>
164176
<groupId>com.google.code.maven-replacer-plugin</groupId>
165177
<artifactId>replacer</artifactId>
166-
<version>1.5.2</version>
178+
<version>1.5.3</version>
167179
<executions>
168180
<execution>
169181
<phase>package</phase>
@@ -182,19 +194,18 @@
182194
</includes>
183195
<replacements>
184196
<replacement>
185-
<token><![CDATA[<body>]]></token>
186-
<value><![CDATA[<body>
187-
<script type="text/javascript">
188-
var _gaq = _gaq || [];
189-
_gaq.push(['_setAccount', 'UA-30716479-1']);
190-
_gaq.push(['_trackPageview']);
191-
192-
(function() {
193-
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
194-
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
195-
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
196-
})();
197+
<token><![CDATA[</body>]]></token>
198+
<value><![CDATA[
199+
<!-- Google tag (gtag.js) -->
200+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PB08BGF2SR"></script>
201+
<script>
202+
window.dataLayer = window.dataLayer || [];
203+
function gtag(){dataLayer.push(arguments);}
204+
gtag('js', new Date());
205+
206+
gtag('config', 'G-PB08BGF2SR');
197207
</script>
208+
</body>
198209
]]></value>
199210
</replacement>
200211
</replacements>
@@ -204,21 +215,28 @@
204215
<plugin>
205216
<groupId>org.apache.maven.plugins</groupId>
206217
<artifactId>maven-gpg-plugin</artifactId>
207-
<version>1.1</version>
218+
<version>3.0.1</version>
208219
<executions>
209220
<execution>
210221
<id>sign-artifacts</id>
211222
<phase>verify</phase>
212223
<goals>
213224
<goal>sign</goal>
214225
</goals>
226+
<configuration>
227+
<gpgArguments>
228+
<arg>--pinentry-mode</arg>
229+
<arg>loopback</arg>
230+
</gpgArguments>
231+
</configuration>
215232
</execution>
216233
</executions>
217234
</plugin>
218235
</plugins>
219236
</build>
220237
</profile>
221238
</profiles>
239+
222240
<issueManagement>
223241
<system>GitHub</system>
224242
<url>https://github.com/jOOQ/jOOR/issues</url>

0 commit comments

Comments
 (0)