Skip to content

Commit 429070f

Browse files
#code cleanup
1 parent 9bcbeb5 commit 429070f

File tree

3 files changed

+41
-10
lines changed

3 files changed

+41
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,25 @@
11
## Changelog
2-
32
------------------------------------------------
4-
3+
### Date: 14-Mar-2019
4+
#### v1.2.1 Bug Fixes and code clean up:
5+
------------------------------------------------
56
### Date: 20-Feb-2019
67
#### Maven integration
78
#### Folder structure modified.
8-
99
------------------------------------------------
10-
1110
### Date: 15-Dec-2017
1211
#### v1.2.0 New Features:
13-
1412
- Entry- added method ‘addParam’
1513
- Query- added method 'addParam'
1614
- Asset- added method 'addParam'
17-
1815
------------------------------------------------
19-
2016
### Date: 10-Nov-2017
2117
#### v1.1.0 New Features:
2218
- Stack- added method 'ImageTransform'
2319
- Query- added method 'includeContentType'
2420
- QueryResult- added method 'contentType'
25-
2621
------------------------------------------------
27-
2822
#### API deprecation:
2923
- Query
3024
- Deprecated method 'includeSchema'
31-
3225
------------------------------------------------

pom.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@
110110
</execution>
111111
</executions>
112112
</plugin>
113+
113114
<plugin>
114115
<groupId>org.apache.maven.plugins</groupId>
115116
<artifactId>maven-gpg-plugin</artifactId>
@@ -128,11 +129,36 @@
128129
<plugin>
129130
<groupId>org.apache.maven.plugins</groupId>
130131
<artifactId>maven-compiler-plugin</artifactId>
132+
<version>3.8.0</version>
131133
<configuration>
132134
<source>8</source>
133135
<target>8</target>
134136
</configuration>
135137
</plugin>
138+
139+
<plugin>
140+
<groupId>org.sonatype.plugins</groupId>
141+
<artifactId>nexus-staging-maven-plugin</artifactId>
142+
<version>1.6.7</version>
143+
<extensions>true</extensions>
144+
<configuration>
145+
<serverId>ossrh</serverId>
146+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
147+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
148+
</configuration>
149+
</plugin>
150+
151+
<plugin>
152+
<groupId>org.apache.maven.plugins</groupId>
153+
<artifactId>maven-release-plugin</artifactId>
154+
<version>2.5.3</version>
155+
<configuration>
156+
<autoVersionSubmodules>true</autoVersionSubmodules>
157+
<useReleaseProfile>false</useReleaseProfile>
158+
<releaseProfiles>release</releaseProfiles>
159+
<goals>deploy</goals>
160+
</configuration>
161+
</plugin>
136162
</plugins>
137163
</build>
138164

profiles.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,17 @@
1212
</property>
1313
</activation>
1414
</profile>
15+
16+
<profile>
17+
<id>ossrh</id>
18+
<activation>
19+
<activeByDefault>true</activeByDefault>
20+
</activation>
21+
<properties>
22+
<gpg.executable>gpg2</gpg.executable>
23+
<gpg.passphrase>***REMOVED***7dQWppvR6UY4</gpg.passphrase>
24+
</properties>
25+
</profile>
26+
1527
</profiles>
1628
</profilesXml>

0 commit comments

Comments
 (0)