Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Genesys PGR
App Blocks
Commits
b5279f58
Commit
b5279f58
authored
Oct 04, 2017
by
Matija Obreza
Browse files
[maven-release-plugin] prepare release application-blocks-1.2
parent
04910c55
Changes
7
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
0 → 100644
View file @
b5279f58
# Changelog
## 1.2 Release
-
8435ad9 Tests and refactoring for getClassPkId(String)
-
88449b5 Create new classPk if it doesn't exist
-
e710e47 Added NumberFilter#between and DateFilter#between operation
-
cbc79dc Properly typed NumberFilter
-
131c206 Fixed NPE in NumberFilter
-
8ba68ee Expose #handleFailedLogin, #handleSuccessfulLogin
-
9f0a7be VersionedModel#version must not be null in database
-
b37b91d Expose #assureGoodPassword
-
9afc28c Cleanup
-
d322dc5 List ACL SIDs by their IDs
-
53607dd gpg: signing failed: No such file or directory
-
1b44cbf Fixed typo
-
697791f Updated failing changePasswordTest (PasswordPolicy)
-
06126fa AclAssignerAspect handles Iterables
-
8b36e96 @Transactional does nothing on private methods, TODOs for issue
-
2906a1d GPG key import using --batch
-
03dc333 Fixed bug in #ensureObjectIdentity using user email instead of uuid
-
7b55e2a Only sign artifacts in 'release' mode
-
186bf8f Use random UUID for BasicUser!
-
1d140c5 Declare the generic UserException in #createUser
-
af08c8e Added BasicModel#isPersisted() method to consistently test value of the #id
-
0d1eac8 Updated README.md
README.md
View file @
b5279f58
...
...
@@ -21,7 +21,7 @@ The **core** provides common data models: `BasicModel`, `VersionedModel`, `Audit
<dependency>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-core
</artifactId>
<version>
1.
1
</version>
<version>
1.
2
</version>
</dependency>
```
...
...
@@ -33,7 +33,7 @@ The **security** module provides generic `User` declaration, ACL model and servi
<dependency>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-security
</artifactId>
<version>
1.
1
</version>
<version>
1.
2
</version>
</dependency>
```
...
...
@@ -45,6 +45,6 @@ The **auditlog** provides the model and services to capture changes to JPA entit
<dependency>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-auditlog
</artifactId>
<version>
1.
1
</version>
<version>
1.
2
</version>
</dependency>
```
auditlog/pom.xml
View file @
b5279f58
...
...
@@ -19,7 +19,7 @@
<parent>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-parent
</artifactId>
<version>
1.2
-SNAPSHOT
</version>
<version>
1.2
</version>
<relativePath>
../parent/pom.xml
</relativePath>
</parent>
<artifactId>
application-blocks-auditlog
</artifactId>
...
...
@@ -79,13 +79,13 @@
<dependency>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-security
</artifactId>
<version>
1.2
-SNAPSHOT
</version>
<version>
1.2
</version>
</dependency>
<dependency>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-core
</artifactId>
<version>
1.2
-SNAPSHOT
</version>
<version>
1.2
</version>
</dependency>
<dependency>
...
...
core/pom.xml
View file @
b5279f58
...
...
@@ -19,7 +19,7 @@
<parent>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-parent
</artifactId>
<version>
1.2
-SNAPSHOT
</version>
<version>
1.2
</version>
<relativePath>
../parent/pom.xml
</relativePath>
</parent>
<artifactId>
application-blocks-core
</artifactId>
...
...
parent/pom.xml
View file @
b5279f58
...
...
@@ -19,7 +19,7 @@
<parent>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks
</artifactId>
<version>
1.2
-SNAPSHOT
</version>
<version>
1.2
</version>
</parent>
<artifactId>
application-blocks-parent
</artifactId>
<packaging>
pom
</packaging>
...
...
pom.xml
View file @
b5279f58
...
...
@@ -18,7 +18,7 @@
<modelVersion>
4.0.0
</modelVersion>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks
</artifactId>
<version>
1.2
-SNAPSHOT
</version>
<version>
1.2
</version>
<packaging>
pom
</packaging>
<name>
Application Building Blocks
</name>
<description>
This is the shared project pom.
</description>
...
...
@@ -49,7 +49,7 @@
<connection>
scm:https://gitlab.croptrust.org/genesys-pgr/application-blocks
</connection>
<developerConnection>
scm:git:git@gitlab.croptrust.org:genesys-pgr/application-blocks.git
</developerConnection>
<url>
git@gitlab.croptrust.org:genesys-pgr/application-blocks.git
</url>
<tag>
HEAD
</tag>
<tag>
application-blocks-1.2
</tag>
</scm>
<issueManagement>
...
...
security/pom.xml
View file @
b5279f58
...
...
@@ -19,7 +19,7 @@
<parent>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-parent
</artifactId>
<version>
1.2
-SNAPSHOT
</version>
<version>
1.2
</version>
<relativePath>
../parent/pom.xml
</relativePath>
</parent>
<artifactId>
application-blocks-security
</artifactId>
...
...
@@ -79,7 +79,7 @@
<dependency>
<groupId>
org.genesys-pgr
</groupId>
<artifactId>
application-blocks-core
</artifactId>
<version>
1.2
-SNAPSHOT
</version>
<version>
1.2
</version>
</dependency>
<dependency>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment