Merge lp:~nwilliams/akiban-persistit/move-core-up into lp:akiban-persistit

Proposed by Nathan Williams
Status: Merged
Approved by: Peter Beaman
Approved revision: 311
Merged at revision: 308
Proposed branch: lp:~nwilliams/akiban-persistit/move-core-up
Merge into: lp:akiban-persistit
Diff against target: 607 lines (+205/-236)
9 files modified
bench/pom.xml (+0/-10)
core/pom.xml (+0/-194)
examples/FindFile/build.xml (+4/-4)
examples/HelloWorld/build.xml (+4/-4)
examples/PersistitMapDemo/build.xml (+4/-4)
examples/SimpleBench/build.xml (+4/-4)
examples/SimpleDemo/build.xml (+4/-4)
examples/SimpleTransaction/build.xml (+4/-4)
pom.xml (+181/-8)
To merge this branch: bzr merge lp:~nwilliams/akiban-persistit/move-core-up
Reviewer Review Type Date Requested Status
Peter Beaman Approve
Review via email: mp+107852@code.launchpad.net

Description of the change

Move core up to top level directory.

Pretty much just shuffling files and combining poms:
  - Remove the legacy bench/ dir
  - Move core/src up to top level directory
  - Combine core/pom and pom, no more multi-module
  - Move a few extraneous build/test files into new src/etc directory
  - Update example build files to refer to new locations

This also changes the primary name back to just 'akiban-persistit' instead of 'akiban-persistit-core'. This will has slightly larger impact (requires updating server) but they don't have to be done in sync.

To post a comment you must log in.
Revision history for this message
Peter Beaman (pbeaman) wrote :

Looks good. Let's see what happens!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== removed directory 'bench'
=== removed file 'bench/pom.xml'
--- bench/pom.xml 2011-02-01 16:48:36 +0000
+++ bench/pom.xml 1970-01-01 00:00:00 +0000
@@ -1,10 +0,0 @@
1<?xml version="1.0"?>
2<project>
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>com.akiban</groupId>
5 <artifactId>akiban-persistit-bench</artifactId>
6 <packaging>jar</packaging>
7 <name>akiban-persistit-bench</name>
8 <version>0.0-SNAPSHOT</version>
9</project>
10
110
=== removed directory 'core'
=== removed file 'core/pom.xml'
--- core/pom.xml 2012-05-29 14:05:18 +0000
+++ core/pom.xml 1970-01-01 00:00:00 +0000
@@ -1,194 +0,0 @@
1<?xml version="1.0"?>
2<project>
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>com.akiban</groupId>
6 <artifactId>akiban-persistit</artifactId>
7 <version>3.1.1-SNAPSHOT</version>
8 </parent>
9 <artifactId>akiban-persistit-core</artifactId>
10 <packaging>jar</packaging>
11 <name>akiban-persistit-core</name>
12 <version>3.1.1-SNAPSHOT</version>
13 <dependencies>
14 <dependency>
15 <groupId>junit</groupId>
16 <artifactId>junit</artifactId>
17 <version>4.8.1</version>
18 <scope>test</scope>
19 </dependency>
20 <dependency>
21 <groupId>org.slf4j</groupId>
22 <artifactId>slf4j-api</artifactId>
23 <version>1.6.1</version>
24 </dependency>
25 <dependency>
26 <groupId>commons-logging</groupId>
27 <artifactId>commons-logging</artifactId>
28 <version>1.1</version>
29 <exclusions>
30 <exclusion>
31 <groupId>logkit</groupId>
32 <artifactId>logkit</artifactId>
33 </exclusion>
34 <exclusion>
35 <groupId>avalon-framework</groupId>
36 <artifactId>avalon-framework</artifactId>
37 </exclusion>
38 <exclusion>
39 <groupId>javax.servlet</groupId>
40 <artifactId>servlet-api</artifactId>
41 </exclusion>
42 </exclusions>
43 </dependency>
44 </dependencies>
45 <build>
46 <finalName>${project.artifactId}-${project.version}${BZR_REVISION}</finalName>
47 <resources>
48 <resource>
49 <directory>src/main/resources</directory>
50 <filtering>true</filtering>
51 <includes>
52 <include>com/persistit/persistit_version</include>
53 </includes>
54 </resource>
55 <resource>
56 <directory>src/main/resources</directory>
57 <filtering>false</filtering>
58 <excludes>
59 <exclude>com/persistit/persistit_version</exclude>
60 </excludes>
61 </resource>
62 </resources>
63 <plugins>
64 <plugin>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-resources-plugin</artifactId>
67 <version>2.4.3</version>
68 </plugin>
69 <plugin>
70 <groupId>org.codehaus.mojo</groupId>
71 <artifactId>build-helper-maven-plugin</artifactId>
72 <version>1.5</version>
73 <executions>
74 <execution>
75 <id>reserve-network-port</id>
76 <goals>
77 <goal>reserve-network-port</goal>
78 </goals>
79 <phase>process-resources</phase>
80 <configuration>
81 <portNames>
82 <portName>rmiport</portName>
83 </portNames>
84 </configuration>
85 </execution>
86 </executions>
87 </plugin>
88 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-compiler-plugin</artifactId>
91 <version>2.0.2</version>
92 <configuration>
93 <source>1.6</source>
94 <target>1.6</target>
95 </configuration>
96 </plugin>
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-source-plugin</artifactId>
100 <version>2.0.4</version>
101 <executions>
102 <execution>
103 <id>attach-sources</id>
104 <phase>package</phase>
105 <goals>
106 <goal>jar</goal>
107 </goals>
108 </execution>
109 </executions>
110 </plugin>
111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-surefire-plugin</artifactId>
114 <version>2.4.1</version>
115 <configuration>
116 <argLine>-Xmx640m -Xms128m -Drmiport=${rmiport} -Xrunjdwp:transport=dt_socket,address=8000,suspend=n,server=y</argLine>
117 <includes>
118 <include>**/*Test.java</include>
119 <include>**/*Test?.java</include>
120 </includes>
121 </configuration>
122 </plugin>
123 <plugin>
124 <groupId>org.codehaus.mojo</groupId>
125 <artifactId>rmic-maven-plugin</artifactId>
126 <version>1.0</version>
127 <configuration>
128 <outputDirectory>target/classes/</outputDirectory>
129 </configuration>
130 <executions>
131 <execution>
132 <id>rmi compilation</id>
133 <goals>
134 <goal>rmic</goal>
135 </goals>
136 </execution>
137 </executions>
138 </plugin>
139 <plugin>
140 <artifactId>maven-assembly-plugin</artifactId>
141 <configuration>
142 <descriptors>
143 <descriptor>src/main/resources/assembly_descriptor.xml</descriptor>
144 </descriptors>
145 </configuration>
146 <executions>
147 <execution>
148 <id>make-assembly</id> <!-- This is used for inheritance merges ?? -->
149 <phase>install</phase> <!-- Append to the install phase -->
150 <goals>
151 <goal>single</goal>
152 </goals>
153 </execution>
154 </executions>
155 </plugin>
156 <plugin>
157 <groupId>org.codehaus.mojo</groupId>
158 <artifactId>findbugs-maven-plugin</artifactId>
159 <version>1.2</version>
160 <configuration>
161 <findbugsXmlOutput>true</findbugsXmlOutput>
162 <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
163 <xmlOutput>true</xmlOutput>
164 <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile>
165 </configuration>
166 </plugin>
167 <plugin>
168 <groupId>com.atlassian.maven.plugins</groupId>
169 <artifactId>maven-clover2-plugin</artifactId>
170 <version>3.0.1</version>
171 <configuration>
172 <generateHistorical>true</generateHistorical>
173 <historyDir>/clover/history</historyDir>
174 <license>${clover.license}</license>
175 <generateXml>true</generateXml>
176 </configuration>
177 </plugin>
178 </plugins>
179 </build>
180 <reporting>
181 <plugins>
182 <plugin>
183 <groupId>org.apache.maven.plugins</groupId>
184 <artifactId>maven-surefire-report-plugin</artifactId>
185 <version>2.4.2</version>
186 </plugin>
187 <plugin>
188 <groupId>org.apache.maven.plugins</groupId>
189 <artifactId>maven-javadoc-plugin</artifactId>
190 <version>2.8</version>
191 </plugin>
192 </plugins>
193 </reporting>
194</project>
1950
=== modified file 'examples/FindFile/build.xml'
--- examples/FindFile/build.xml 2012-05-25 18:50:59 +0000
+++ examples/FindFile/build.xml 2012-05-29 19:10:29 +0000
@@ -31,8 +31,8 @@
31 srcdir="."31 srcdir="."
32 destdir=".">32 destdir=".">
33 <classpath>33 <classpath>
34 <fileset dir="../../core/target">34 <fileset dir="../../target">
35 <include name="akiban-persistit-core-*-with-dependencies-and-tests.jar"/>35 <include name="akiban-persistit*-with-dependencies-and-tests.jar"/>
36 </fileset>36 </fileset>
37 </classpath>37 </classpath>
38 </javac> 38 </javac>
@@ -40,8 +40,8 @@
40 <target name="run" depends="compile">40 <target name="run" depends="compile">
41 <java fork="true" classname="FindFile">41 <java fork="true" classname="FindFile">
42 <classpath>42 <classpath>
43 <fileset dir="../../core/target">43 <fileset dir="../../target">
44 <include name="akiban-persistit-core-*-with-dependencies-and-tests.jar"/>44 <include name="akiban-persistit*-with-dependencies-and-tests.jar"/>
45 </fileset>45 </fileset>
46 <pathelement location="." />46 <pathelement location="." />
47 </classpath>47 </classpath>
4848
=== modified file 'examples/HelloWorld/build.xml'
--- examples/HelloWorld/build.xml 2012-05-25 18:50:59 +0000
+++ examples/HelloWorld/build.xml 2012-05-29 19:10:29 +0000
@@ -29,8 +29,8 @@
29 srcdir="."29 srcdir="."
30 destdir=".">30 destdir=".">
31 <classpath>31 <classpath>
32 <fileset dir="../../core/target">32 <fileset dir="../../target">
33 <include name="akiban-persistit-core-*-with-dependencies-and-tests.jar"/>33 <include name="akiban-persistit*-with-dependencies-and-tests.jar"/>
34 </fileset>34 </fileset>
35 <pathelement location="." />35 <pathelement location="." />
36 </classpath>36 </classpath>
@@ -40,8 +40,8 @@
40 <target name="run" depends="compile">40 <target name="run" depends="compile">
41 <java classname="HelloWorld" fork="true">41 <java classname="HelloWorld" fork="true">
42 <classpath>42 <classpath>
43 <fileset dir="../../core/target">43 <fileset dir="../../target">
44 <include name="akiban-persistit-core-*-with-dependencies-and-tests.jar"/>44 <include name="akiban-persistit*-with-dependencies-and-tests.jar"/>
45 </fileset>45 </fileset>
46 <pathelement location="." />46 <pathelement location="." />
47 </classpath>47 </classpath>
4848
=== modified file 'examples/PersistitMapDemo/build.xml'
--- examples/PersistitMapDemo/build.xml 2012-05-25 18:50:59 +0000
+++ examples/PersistitMapDemo/build.xml 2012-05-29 19:10:29 +0000
@@ -29,8 +29,8 @@
29 srcdir="."29 srcdir="."
30 destdir=".">30 destdir=".">
31 <classpath>31 <classpath>
32 <fileset dir="../../core/target">32 <fileset dir="../../target">
33 <include name="akiban-persistit-core-*-with-dependencies-and-tests.jar"/>33 <include name="akiban-persistit*-with-dependencies-and-tests.jar"/>
34 </fileset>34 </fileset>
35 <pathelement location="." />35 <pathelement location="." />
36 </classpath>36 </classpath>
@@ -40,8 +40,8 @@
40 <target name="run" depends="compile">40 <target name="run" depends="compile">
41 <java classname="PersistitMapDemo" fork="true" >41 <java classname="PersistitMapDemo" fork="true" >
42 <classpath>42 <classpath>
43 <fileset dir="../../core/target">43 <fileset dir="../../target">
44 <include name="akiban-persistit-core-*-with-dependencies-and-tests.jar"/>44 <include name="akiban-persistit*-with-dependencies-and-tests.jar"/>
45 </fileset>45 </fileset>
46 <pathelement location="." />46 <pathelement location="." />
47 </classpath>47 </classpath>
4848
=== modified file 'examples/SimpleBench/build.xml'
--- examples/SimpleBench/build.xml 2012-05-25 18:50:59 +0000
+++ examples/SimpleBench/build.xml 2012-05-29 19:10:29 +0000
@@ -29,8 +29,8 @@
29 srcdir="."29 srcdir="."
30 destdir=".">30 destdir=".">
31 <classpath>31 <classpath>
32 <fileset dir="../../core/target">32 <fileset dir="../../target">
33 <include name="akiban-persistit-core-*-with-dependencies-and-tests.jar"/>33 <include name="akiban-persistit*-with-dependencies-and-tests.jar"/>
34 </fileset>34 </fileset>
35 </classpath>35 </classpath>
36 </javac>36 </javac>
@@ -40,8 +40,8 @@
40 <target name="run" depends="compile">40 <target name="run" depends="compile">
41 <java classname="SimpleBench" fork="true">41 <java classname="SimpleBench" fork="true">
42 <classpath>42 <classpath>
43 <fileset dir="../../core/target">43 <fileset dir="../../target">
44 <include name="akiban-persistit-core-*-with-dependencies-and-tests.jar"/>44 <include name="akiban-persistit*-with-dependencies-and-tests.jar"/>
45 </fileset>45 </fileset>
46 <pathelement location="." />46 <pathelement location="." />
47 </classpath>47 </classpath>
4848
=== modified file 'examples/SimpleDemo/build.xml'
--- examples/SimpleDemo/build.xml 2012-05-25 18:50:59 +0000
+++ examples/SimpleDemo/build.xml 2012-05-29 19:10:29 +0000
@@ -29,8 +29,8 @@
29 srcdir="."29 srcdir="."
30 destdir=".">30 destdir=".">
31 <classpath>31 <classpath>
32 <fileset dir="../../core/target">32 <fileset dir="../../target">
33 <include name="akiban-persistit-core-*-with-dependencies-and-tests.jar"/>33 <include name="akiban-persistit*-with-dependencies-and-tests.jar"/>
34 </fileset>34 </fileset>
35 </classpath>35 </classpath>
36 </javac>36 </javac>
@@ -39,8 +39,8 @@
39 <target name="run" depends="compile">39 <target name="run" depends="compile">
40 <java classname="SimpleDemo" fork="true">40 <java classname="SimpleDemo" fork="true">
41 <classpath>41 <classpath>
42 <fileset dir="../../core/target">42 <fileset dir="../../target">
43 <include name="akiban-persistit-core-*-with-dependencies-and-tests.jar"/>43 <include name="akiban-persistit*-with-dependencies-and-tests.jar"/>
44 </fileset>44 </fileset>
45 <pathelement location="." />45 <pathelement location="." />
46 </classpath>46 </classpath>
4747
=== modified file 'examples/SimpleTransaction/build.xml'
--- examples/SimpleTransaction/build.xml 2012-05-25 18:50:59 +0000
+++ examples/SimpleTransaction/build.xml 2012-05-29 19:10:29 +0000
@@ -29,8 +29,8 @@
29 srcdir="."29 srcdir="."
30 destdir=".">30 destdir=".">
31 <classpath>31 <classpath>
32 <fileset dir="../../core/target">32 <fileset dir="../../target">
33 <include name="akiban-persistit-core-*-with-dependencies-and-tests.jar"/>33 <include name="akiban-persistit-*-with-dependencies-and-tests.jar"/>
34 </fileset>34 </fileset>
35 </classpath>35 </classpath>
36 </javac>36 </javac>
@@ -39,8 +39,8 @@
39 <target name="run" depends="compile">39 <target name="run" depends="compile">
40 <java classname="SimpleTransaction" fork="true">40 <java classname="SimpleTransaction" fork="true">
41 <classpath>41 <classpath>
42 <fileset dir="../../core/target">42 <fileset dir="../../target">
43 <include name="akiban-persistit-core-*-with-dependencies-and-tests.jar"/>43 <include name="akiban-persistit*-with-dependencies-and-tests.jar"/>
44 </fileset>44 </fileset>
45 <pathelement location="." />45 <pathelement location="." />
46 </classpath>46 </classpath>
4747
=== modified file 'pom.xml'
--- pom.xml 2012-05-29 18:51:35 +0000
+++ pom.xml 2012-05-29 19:10:29 +0000
@@ -3,9 +3,9 @@
3 <modelVersion>4.0.0</modelVersion>3 <modelVersion>4.0.0</modelVersion>
4 <groupId>com.akiban</groupId>4 <groupId>com.akiban</groupId>
5 <artifactId>akiban-persistit</artifactId>5 <artifactId>akiban-persistit</artifactId>
6 <packaging>pom</packaging>
7 <name>akiban-persistit</name>6 <name>akiban-persistit</name>
8 <version>3.1.1-SNAPSHOT</version>7 <version>3.1.1-SNAPSHOT</version>
8 <packaging>jar</packaging>
9 <properties>9 <properties>
10 <!-- this is the default version number, Jenkins job sets this to the official number -->10 <!-- this is the default version number, Jenkins job sets this to the official number -->
11 <BZR_REVISION></BZR_REVISION>11 <BZR_REVISION></BZR_REVISION>
@@ -24,20 +24,179 @@
24 <url>http://akiban.artifactoryonline.com/akiban/libs-releases-local</url>24 <url>http://akiban.artifactoryonline.com/akiban/libs-releases-local</url>
25 </repository>25 </repository>
26 </distributionManagement>26 </distributionManagement>
27 <modules>27 <dependencies>
28 <module>core</module>28 <dependency>
29 <module>bench</module>29 <groupId>junit</groupId>
30 </modules>30 <artifactId>junit</artifactId>
31 <version>4.8.1</version>
32 <scope>test</scope>
33 </dependency>
34 <dependency>
35 <groupId>org.slf4j</groupId>
36 <artifactId>slf4j-api</artifactId>
37 <version>1.6.1</version>
38 </dependency>
39 <dependency>
40 <groupId>commons-logging</groupId>
41 <artifactId>commons-logging</artifactId>
42 <version>1.1</version>
43 <exclusions>
44 <exclusion>
45 <groupId>logkit</groupId>
46 <artifactId>logkit</artifactId>
47 </exclusion>
48 <exclusion>
49 <groupId>avalon-framework</groupId>
50 <artifactId>avalon-framework</artifactId>
51 </exclusion>
52 <exclusion>
53 <groupId>javax.servlet</groupId>
54 <artifactId>servlet-api</artifactId>
55 </exclusion>
56 </exclusions>
57 </dependency>
58 </dependencies>
31 <build>59 <build>
60 <finalName>${project.artifactId}-${project.version}${BZR_REVISION}</finalName>
61 <resources>
62 <resource>
63 <directory>src/main/resources</directory>
64 <filtering>true</filtering>
65 <includes>
66 <include>com/persistit/persistit_version</include>
67 </includes>
68 </resource>
69 <resource>
70 <directory>src/main/resources</directory>
71 <filtering>false</filtering>
72 <excludes>
73 <exclude>com/persistit/persistit_version</exclude>
74 </excludes>
75 </resource>
76 </resources>
32 <plugins>77 <plugins>
33 <plugin>78 <plugin>
79 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-resources-plugin</artifactId>
81 <version>2.4.3</version>
82 </plugin>
83 <plugin>
84 <groupId>org.codehaus.mojo</groupId>
85 <artifactId>build-helper-maven-plugin</artifactId>
86 <version>1.5</version>
87 <executions>
88 <execution>
89 <id>reserve-network-port</id>
90 <goals>
91 <goal>reserve-network-port</goal>
92 </goals>
93 <phase>process-resources</phase>
94 <configuration>
95 <portNames>
96 <portName>rmiport</portName>
97 </portNames>
98 </configuration>
99 </execution>
100 </executions>
101 </plugin>
102 <plugin>
103 <groupId>org.apache.maven.plugins</groupId>
104 <artifactId>maven-compiler-plugin</artifactId>
105 <version>2.0.2</version>
106 <configuration>
107 <source>1.6</source>
108 <target>1.6</target>
109 </configuration>
110 </plugin>
111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-source-plugin</artifactId>
114 <version>2.0.4</version>
115 <executions>
116 <execution>
117 <id>attach-sources</id>
118 <phase>package</phase>
119 <goals>
120 <goal>jar</goal>
121 </goals>
122 </execution>
123 </executions>
124 </plugin>
125 <plugin>
126 <groupId>org.apache.maven.plugins</groupId>
127 <artifactId>maven-surefire-plugin</artifactId>
128 <version>2.4.1</version>
129 <configuration>
130 <argLine>-Xmx640m -Xms128m -Drmiport=${rmiport} -Xrunjdwp:transport=dt_socket,address=8000,suspend=n,server=y</argLine>
131 <includes>
132 <include>**/*Test.java</include>
133 <include>**/*Test?.java</include>
134 </includes>
135 </configuration>
136 </plugin>
137 <plugin>
138 <groupId>org.codehaus.mojo</groupId>
139 <artifactId>rmic-maven-plugin</artifactId>
140 <version>1.0</version>
141 <configuration>
142 <outputDirectory>target/classes/</outputDirectory>
143 </configuration>
144 <executions>
145 <execution>
146 <id>rmi compilation</id>
147 <goals>
148 <goal>rmic</goal>
149 </goals>
150 </execution>
151 </executions>
152 </plugin>
153 <plugin>
154 <artifactId>maven-assembly-plugin</artifactId>
155 <configuration>
156 <descriptors>
157 <descriptor>src/main/resources/assembly_descriptor.xml</descriptor>
158 </descriptors>
159 </configuration>
160 <executions>
161 <execution>
162 <id>make-assembly</id> <!-- This is used for inheritance merges ?? -->
163 <phase>install</phase> <!-- Append to the install phase -->
164 <goals>
165 <goal>single</goal>
166 </goals>
167 </execution>
168 </executions>
169 </plugin>
170 <plugin>
171 <groupId>org.codehaus.mojo</groupId>
172 <artifactId>findbugs-maven-plugin</artifactId>
173 <version>1.2</version>
174 <configuration>
175 <findbugsXmlOutput>true</findbugsXmlOutput>
176 <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
177 <xmlOutput>true</xmlOutput>
178 <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile>
179 </configuration>
180 </plugin>
181 <plugin>
182 <groupId>com.atlassian.maven.plugins</groupId>
183 <artifactId>maven-clover2-plugin</artifactId>
184 <version>3.0.1</version>
185 <configuration>
186 <generateHistorical>true</generateHistorical>
187 <historyDir>/clover/history</historyDir>
188 <license>${clover.license}</license>
189 <generateXml>true</generateXml>
190 </configuration>
191 </plugin>
192 <plugin>
34 <inherited>false</inherited>193 <inherited>false</inherited>
35 <groupId>com.mycila.maven-license-plugin</groupId>194 <groupId>com.mycila.maven-license-plugin</groupId>
36 <artifactId>maven-license-plugin</artifactId>195 <artifactId>maven-license-plugin</artifactId>
37 <version>1.10.b1</version>196 <version>1.10.b1</version>
38 <configuration>197 <configuration>
39 <!-- Note plugin WARNs header wasn't specified but still works as desired (multi-module bug?) -->198 <!-- Note plugin WARNs header wasn't specified but still works as desired (multi-module bug?) -->
40 <header>HEADER.txt</header>199 <header>src/etc/HEADER.txt</header>
41 <headerSections>200 <headerSections>
42 <headerSection>201 <headerSection>
43 <key>__YEAR_SECTION__</key>202 <key>__YEAR_SECTION__</key>
@@ -54,8 +213,8 @@
54 <exclude>bench/**</exclude>213 <exclude>bench/**</exclude>
55 <!-- Docs -->214 <!-- Docs -->
56 <exclude>doc/**</exclude>215 <exclude>doc/**</exclude>
57 <exclude>core/src/main/resources/**</exclude>216 <exclude>src/main/resources/**</exclude>
58 <exclude>core/src/test/resources/**</exclude>217 <exclude>src/test/resources/**</exclude>
59 <!-- IDE files -->218 <!-- IDE files -->
60 <exclude>.idea/**</exclude>219 <exclude>.idea/**</exclude>
61 <exclude>.settings/**</exclude>220 <exclude>.settings/**</exclude>
@@ -81,4 +240,18 @@
81 </plugin>240 </plugin>
82 </plugins>241 </plugins>
83 </build>242 </build>
243 <reporting>
244 <plugins>
245 <plugin>
246 <groupId>org.apache.maven.plugins</groupId>
247 <artifactId>maven-surefire-report-plugin</artifactId>
248 <version>2.4.2</version>
249 </plugin>
250 <plugin>
251 <groupId>org.apache.maven.plugins</groupId>
252 <artifactId>maven-javadoc-plugin</artifactId>
253 <version>2.8</version>
254 </plugin>
255 </plugins>
256 </reporting>
84</project>257</project>
85258
=== renamed directory 'core/src' => 'src'
=== added directory 'src/etc'
=== renamed file 'HEADER.txt' => 'src/etc/HEADER.txt'
=== renamed file 'core/findbugs-exclude.xml' => 'src/etc/findbugs-exclude.xml'
=== renamed file 'core/run_stress_tests.py' => 'src/etc/run_stress_tests.py'

Subscribers

People subscribed via source and target branches