Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Genesys Backend
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
45
Issues
45
List
Boards
Labels
Service Desk
Milestones
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Genesys PGR
Genesys Backend
Commits
d6341217
Commit
d6341217
authored
May 30, 2017
by
Matija Obreza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
query-dsl + upgraded spring-data-jpa
parent
b594e4ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
2 deletions
+36
-2
pom.xml
pom.xml
+36
-2
No files found.
pom.xml
View file @
d6341217
...
...
@@ -72,12 +72,13 @@
<jsp-api.version>
2.1
</jsp-api.version>
<spring.framework.version>
4.3.8.RELEASE
</spring.framework.version>
<spring-data-jpa.version>
1.
9
.4.RELEASE
</spring-data-jpa.version>
<spring-data-jpa.version>
1.
10
.4.RELEASE
</spring-data-jpa.version>
<spring.data.release-train>
Hopper-SR1
</spring.data.release-train>
<spring.security.version>
4.
0.4
.RELEASE
</spring.security.version>
<spring.security.version>
4.
1.3
.RELEASE
</spring.security.version>
<spring.security.oauth2.version>
1.0.5.RELEASE
</spring.security.oauth2.version>
<org.springframework.social-version>
1.1.4.RELEASE
</org.springframework.social-version>
<org.springframework.social-google-version>
1.0.0.RELEASE
</org.springframework.social-google-version>
<querydsl.version>
4.1.4
</querydsl.version>
<hibernate.version>
4.3.11.Final
</hibernate.version>
<hsqldb.version>
2.3.3
</hsqldb.version>
...
...
@@ -289,6 +290,12 @@
<version>
${spring-data-jpa.version}
</version>
</dependency>
<dependency>
<groupId>
com.querydsl
</groupId>
<artifactId>
querydsl-jpa
</artifactId>
<version>
${querydsl.version}
</version>
</dependency>
<!-- App blocks -->
<dependency>
<groupId>
org.genesys-pgr
</groupId>
...
...
@@ -517,6 +524,33 @@
<build>
<plugins>
<plugin>
<groupId>
com.mysema.maven
</groupId>
<artifactId>
apt-maven-plugin
</artifactId>
<version>
1.1.3
</version>
<executions>
<execution>
<goals>
<goal>
process
</goal>
</goals>
<configuration>
<includes>
<!-- List packages to be processed -->
<include>
org.genesys2.server.model
</include>
</includes>
<outputDirectory>
target/generated-sources/querydsl
</outputDirectory>
<processor>
com.querydsl.apt.jpa.JPAAnnotationProcessor
</processor>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>
com.querydsl
</groupId>
<artifactId>
querydsl-apt
</artifactId>
<version>
4.1.4
</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
versions-maven-plugin
</artifactId>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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