Skip to content

Commit 69767ab

Browse files
committed
Grails core now depends on the aspectjrt library at runtime, so I have
updated the POMs to reflect this.
1 parent 0f6c714 commit 69767ab

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

maven/grails-core.pom.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,11 @@
209209
<groupId>org.springframework</groupId>
210210
<artifactId>spring-test</artifactId>
211211
</dependency>
212+
213+
<dependency>
214+
<groupId>org.aspectj</groupId>
215+
<artifactId>aspectjrt</artifactId>
216+
</dependency>
212217

213218
<!-- Grails Dependencies -->
214219
<dependency>

maven/grails.pom.in

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,9 +343,10 @@
343343
</dependency>
344344

345345
<dependency>
346-
<groupId>aopalliance</groupId>
347-
<artifactId>aopalliance</artifactId>
348-
<version>1.0</version>
346+
<groupId>org.aspectj</groupId>
347+
<artifactId>aspectjrt</artifactId>
348+
<version>1.6.6</version>
349+
<scope>runtime</scope>
349350
</dependency>
350351
</dependencies>
351352
</dependencyManagement>

0 commit comments

Comments
 (0)