Skip to content

Commit

Permalink
Merge pull request querydsl#2857 from querydsl/fix-classgraph-scope
Browse files Browse the repository at this point in the history
Fix classgraph scope
  • Loading branch information
jwgmeligmeyling committed Jun 2, 2021
2 parents 468c299 + e9589bb commit dd8c587
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 8 deletions.
5 changes: 0 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,6 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
Expand Down
1 change: 1 addition & 0 deletions querydsl-codegen-utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
<scope>compile</scope>
</dependency>

<!-- test -->
Expand Down
1 change: 1 addition & 0 deletions querydsl-codegen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
<scope>compile</scope>
</dependency>

<!-- test -->
Expand Down
6 changes: 6 additions & 0 deletions querydsl-collections/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@
<type>test-jar</type>
</dependency>

<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-guava</artifactId>
Expand Down
7 changes: 6 additions & 1 deletion querydsl-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,12 @@
<groupId>com.mysema.commons</groupId>
<artifactId>mysema-commons-lang</artifactId>
<version>${mysema.lang.version}</version>
</dependency>
</dependency>
<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
<scope>test</scope>
</dependency>

<!-- alias dependencies -->
<dependency>
Expand Down
6 changes: 6 additions & 0 deletions querydsl-jdo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,12 @@
<type>test-jar</type>
</dependency>

<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>jdepend</groupId>
<artifactId>jdepend</artifactId>
Expand Down
10 changes: 8 additions & 2 deletions querydsl-jpa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<groupId>com.querydsl</groupId>
<artifactId>querydsl-core</artifactId>
<version>${project.version}</version>
</dependency>
</dependency>
<dependency>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-apt</artifactId>
Expand Down Expand Up @@ -197,7 +197,13 @@
<scope>test</scope>
<type>test-jar</type>
</dependency>


<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>jdepend</groupId>
<artifactId>jdepend</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions querydsl-sql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,11 @@
<scope>test</scope>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-spatial</artifactId>
Expand Down

0 comments on commit dd8c587

Please sign in to comment.