Skip to content

Commit

Permalink
[AOP] Fixed project structure and added missing maven plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
marcingrzejszczak committed Sep 16, 2013
1 parent a1d1297 commit aee70af
Show file tree
Hide file tree
Showing 18 changed files with 29 additions and 440 deletions.
42 changes: 29 additions & 13 deletions AOP/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,18 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>

<spring.version>3.1.0.RELEASE</spring.version>
<aspectj.version>1.6.11</aspectj.version>
<aspectj.version>1.6.7</aspectj.version>

<!-- Plugin versions -->
<aspectj-maven-plugin.version>1.4</aspectj-maven-plugin.version>
<aspectj-maven-plugin.version>1.3</aspectj-maven-plugin.version>

</properties>
<repositories>
<repository>
<id>spring-release</id>
<url>http://maven.springframework.org/release</url>
</repository>
<repository>
<id>maven-us-nuxeo</id>
<url>https://maven-us.nuxeo.org/nexus/content/groups/public</url>
</repository>
</repositories>

<dependencies>
Expand All @@ -34,6 +29,11 @@
<artifactId>junit</artifactId>
<version>4.10</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.0</version>
</dependency>
<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
Expand Down Expand Up @@ -69,12 +69,7 @@
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.6.11</version>
</dependency>
<dependency><!-- java bytecode processor -->
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.4.GA</version>
<version>${aspectj.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand All @@ -87,4 +82,25 @@
<version>2.6</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>${aspectj-maven-plugin.version}</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
28 changes: 0 additions & 28 deletions AOP/src/main/pl/grzejszczak/marcin/aop/AopIntegrationTest.java

This file was deleted.

37 changes: 0 additions & 37 deletions AOP/src/main/pl/grzejszczak/marcin/aop/AopTest.java

This file was deleted.

This file was deleted.

This file was deleted.

12 changes: 0 additions & 12 deletions AOP/src/main/pl/grzejszczak/marcin/aop/service/UserService.java

This file was deleted.

This file was deleted.

34 changes: 0 additions & 34 deletions AOP/src/main/pl/grzejszczak/marcin/aop/type/Role.java

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit aee70af

Please sign in to comment.