My favorites | Sign in
Project Home Downloads Wiki Issues Source
Repository:
Checkout   Browse   Changes   Clones    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>parent</artifactId>
<groupId>com.googlecode.n_orm</groupId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<groupId>com.googlecode.n_orm</groupId>
<artifactId>parent-aspect</artifactId>
<name>n-orm aspect parent pom</name>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<scm>
<connection>scm:hg:http://n-orm.googlecode.com/hg/</connection>
<developerConnection>scm:hg:https://n-orm.googlecode.com/hg/</developerConnection>
<url>http://n-orm.googlecode.com/hg/</url>
</scm>
<distributionManagement>
<site>
<id>wiki</id>
<name>n-orm Wiki pages</name>
<url>file://${basedir}/../../n-orm.wiki/parent-aspect</url>
</site>
</distributionManagement>

<description>Storage parent project for aspectified projects (e.g. storage).</description>
<url>http://n-orm.googlecode.com/</url>
<modules>
<module>../storage/</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>${aspectj.plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<complianceLevel>${java.version}</complianceLevel>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal> <!-- use this goal to weave all your main classes -->
<goal>test-compile</goal> <!-- use this goal to weave all your test classes -->
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjtools</artifactId>
<version>${aspectj.version}</version>
</dependency>
</dependencies>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
<testExcludes>
<exclude>**/*.java</exclude>
</testExcludes>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>

<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>${aspectj.version}</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
</dependencies>

<!-- reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId> <version>${aspectj.plugin.version}</version>
<configuration> <source>${java.version}</source> <target>${java.version}</target>
<complianceLevel>${java.version}</complianceLevel> <aspectDirectory>src/main/java</aspectDirectory>
<publicScope>true</publicScope> </configuration> <reportSets> <reportSet>
<reports> <report>aspectj-report</report> </reports> </reportSet> </reportSets>
</plugin> </plugins> </reporting -->

<!-- repositories> <repository> <id>codehaus-nexus</id> <name>Mojo Maven
Repository</name> <url>https://nexus.codehaus.org/content/groups/public/</url>
<releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled>
</snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository>
<id>codehaus-nexus</id> <name>Mojo Maven Repository</name> <url>https://nexus.codehaus.org/content/groups/public/</url>
<releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled>
</snapshots> </pluginRepository> </pluginRepositories -->

<profiles>
<profile>
<id>coverage</id>
<properties>
<aspectj.version>1.6.7</aspectj.version>
<aspectj.plugin.version>1.3</aspectj.plugin.version>
</properties>
</profile>
</profiles>
</project>

Change log

1b56aa148eb5 by Frédéric Fondement <frederic...@uha.fr> on Apr 26, 2012   Diff
move wiki to n-orm.wiki
Go to: 
Sign in to write a code review

Older revisions

f264c3e2e694 by f.fondement on Feb 20, 2012   Diff
Merge with 16f07a2fd05247b903582994364
e6a866572f899
integration in the overall project
broken dependency to sample project
5d8336138a89 by Frédéric Fondement <frederic...@uha.fr> on Jan 27, 2012   Diff
updated aspectj
a05656f4400a by Frédéric Fondement <frederic...@uha.fr> on Jan 27, 2012   Diff
testing HBase overloadable properties
All revisions of this file

File info

Size: 4012 bytes, 114 lines
Powered by Google Project Hosting