You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cd...@apache.org on 2016/03/24 15:47:04 UTC

[2/2] flex-blazeds git commit: FLEX-34980 - NoSuchMethodError on Java 7 - Added the animal sniffer maven plugin to ensure API compatibility with JDK 1.6

FLEX-34980 - NoSuchMethodError on Java 7
- Added the animal sniffer maven plugin to ensure API compatibility with JDK 1.6


Project: http://git-wip-us.apache.org/repos/asf/flex-blazeds/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-blazeds/commit/cf0d1eb5
Tree: http://git-wip-us.apache.org/repos/asf/flex-blazeds/tree/cf0d1eb5
Diff: http://git-wip-us.apache.org/repos/asf/flex-blazeds/diff/cf0d1eb5

Branch: refs/heads/develop
Commit: cf0d1eb59c2505feb0d6039f85090fc07253d5ff
Parents: 5340320
Author: Christofer Dutz <ch...@codecentric.de>
Authored: Thu Mar 24 15:46:54 2016 +0100
Committer: Christofer Dutz <ch...@codecentric.de>
Committed: Thu Mar 24 15:46:54 2016 +0100

----------------------------------------------------------------------
 pom.xml | 44 ++++++++++++++++++++++++--------------------
 1 file changed, 24 insertions(+), 20 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-blazeds/blob/cf0d1eb5/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9058753..1e874a2 100755
--- a/pom.xml
+++ b/pom.xml
@@ -65,6 +65,7 @@
 		<module>remoting</module>
 		<module>opt</module>
 		<module>testsuite</module>
+		<module>blazeds-spring-boot-starter</module>
 	</modules>
 
 	<build>
@@ -89,26 +90,6 @@
 				</configuration>
 			</plugin>
 
-            <plugin>
-                <artifactId>maven-assembly-plugin</artifactId>
-                <version>2.5.1</version>
-                <executions>
-                    <execution>
-                        <id>assemble-sources-releases</id>
-                        <phase>package</phase>
-                        <goals>
-                            <goal>single</goal>
-                        </goals>
-                    </execution>
-                </executions>
-                <configuration>
-                    <descriptors>
-                        <descriptor>src/assembly/assemble-zip.xml</descriptor>
-                        <descriptor>src/assembly/assemble-gz.xml</descriptor>
-                    </descriptors>
-                </configuration>
-            </plugin>
-
             <!-- Turned off till the JavaDoc tags are all correctly set -->
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
@@ -117,6 +98,29 @@
                     <skip>true</skip>
                 </configuration>
             </plugin>
+
+			<!-- Plugin to detect problems with JDK incompatabilities -->
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>animal-sniffer-maven-plugin</artifactId>
+				<version>1.15</version>
+				<executions>
+					<execution>
+						<id>check-jdk-1.6</id>
+						<phase>test</phase>
+						<goals>
+							<goal>check</goal>
+						</goals>
+					</execution>
+				</executions>
+				<configuration>
+					<signature>
+						<groupId>org.codehaus.mojo.signature</groupId>
+						<artifactId>java16</artifactId>
+						<version>1.1</version>
+					</signature>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>