Some cleaning for pom files and added missing one for impl
diff --git a/api/pom.xml b/api/pom.xml
index 63f0200..3943765 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -18,11 +18,12 @@
-->
<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/maven-v4_0_0.xsd">
+
<parent>
- <groupId>org.eclipse.ee4j</groupId>
- <artifactId>project</artifactId>
- <version>1.0.1</version>
- <relativePath/>
+ <groupId>org.eclipse.ee4j</groupId>
+ <artifactId>project</artifactId>
+ <version>1.0.1</version>
+ <relativePath />
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -36,14 +37,14 @@
<!-- Make sure the two versions are in sync with the maven version -->
<spec.version>3.0</spec.version>
<bundle.version>3.0.0</bundle.version>
- <extensionName>javax.el</extensionName>
+ <extensionName>jakarta.el</extensionName>
<bundle.symbolicName>javax.el-api</bundle.symbolicName>
<vendorName>Oracle Corporation</vendorName>
<findbugs.version>2.4.0</findbugs.version>
<findbugs.exclude />
<findbugs.threshold>High</findbugs.threshold>
</properties>
-
+
<url>https://projects.eclipse.org/projects/ee4j.el</url>
<licenses>
@@ -64,11 +65,11 @@
</issueManagement>
<mailingLists>
<mailingList>
- <name>EL mailing list</name>
- <post>el-dev@eclipse.org</post>
- <subscribe>https://dev.eclipse.org/mailman/listinfo/el-dev</subscribe>
- <unsubscribe>https://dev.eclipse.org/mailman/listinfo/el-dev</unsubscribe>
- <archive>https://dev.eclipse.org/mhonarc/lists/el-dev</archive>
+ <name>EL mailing list</name>
+ <post>el-dev@eclipse.org</post>
+ <subscribe>https://dev.eclipse.org/mailman/listinfo/el-dev</subscribe>
+ <unsubscribe>https://dev.eclipse.org/mailman/listinfo/el-dev</unsubscribe>
+ <archive>https://dev.eclipse.org/mhonarc/lists/el-dev</archive>
</mailingList>
</mailingLists>
<scm>
@@ -106,16 +107,16 @@
<supportedProjectType>jar</supportedProjectType>
</supportedProjectTypes>
<instructions>
+ <Automatic-Module-Name>java.el</Automatic-Module-Name>
+ <Bundle-Description>Expression Language ${spec.version} API</Bundle-Description>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
- <Bundle-Description>
- Expression Language ${spec.version} API
- </Bundle-Description>
<Bundle-Version>${bundle.version}</Bundle-Version>
<Extension-Name>${extensionName}</Extension-Name>
<Specification-Version>${spec.version}</Specification-Version>
<Specification-Vendor>${vendorName}</Specification-Vendor>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor>${vendorName}</Implementation-Vendor>
+ <Export-Package>javax.el</Export-Package>
</instructions>
</configuration>
<executions>
@@ -128,6 +129,7 @@
</execution>
</executions>
</plugin>
+
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
@@ -140,6 +142,7 @@
</excludes>
</configuration>
</plugin>
+
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
@@ -150,6 +153,7 @@
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
+
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
@@ -159,13 +163,14 @@
</configuration>
<executions>
<execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar-no-fork</goal>
- </goals>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar-no-fork</goal>
+ </goals>
</execution>
</executions>
</plugin>
+
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
@@ -173,10 +178,14 @@
<executions>
<execution>
<id>attach-javadocs</id>
- <goals>
- <goal>jar</goal>
- </goals>
+ <goals>
+ <goal>jar</goal>
+ </goals>
<configuration>
+ <links>
+ <link>https://javaee.github.io/javaee-spec/javadocs/</link>
+ </links>
+ <additionalJOption>-Xdoclint:none</additionalJOption>
<groups>
<group>
<title>Expresion Language API Documentation</title>
@@ -194,7 +203,8 @@
</configuration>
</execution>
</executions>
- </plugin>
+ </plugin>
+
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
@@ -206,6 +216,7 @@
<findbugsXmlWithMessages>true</findbugsXmlWithMessages>
</configuration>
</plugin>
+
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
@@ -214,25 +225,27 @@
<useReleaseProfile>false</useReleaseProfile>
<arguments>${release.arguments}</arguments>
</configuration>
- </plugin>
+ </plugin>
+
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-remote-resources-plugin</artifactId>
<version>1.2.1</version>
<executions>
- <execution>
- <goals>
- <goal>process</goal>
- </goals>
- <configuration>
- <resourceBundles>
- <resourceBundle>org.glassfish:legal:1.1</resourceBundle>
- </resourceBundles>
- </configuration>
- </execution>
+ <execution>
+ <goals>
+ <goal>process</goal>
+ </goals>
+ <configuration>
+ <resourceBundles>
+ <resourceBundle>org.glassfish:legal:1.1</resourceBundle>
+ </resourceBundles>
+ </configuration>
+ </execution>
</executions>
</plugin>
- </plugins>
+ </plugins>
+
<resources>
<resource>
<directory>src/main/java</directory>
diff --git a/impl/pom.xml b/impl/pom.xml
new file mode 100644
index 0000000..7771a54
--- /dev/null
+++ b/impl/pom.xml
@@ -0,0 +1,364 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+ Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
+
+ This program and the accompanying materials are made available under the
+ terms of the Eclipse Public License v. 2.0, which is available at
+ http://www.eclipse.org/legal/epl-2.0.
+
+ This Source Code may also be made available under the following Secondary
+ Licenses when the conditions for such availability set forth in the
+ Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
+ version 2 with the GNU Classpath Exception, which is available at
+ https://www.gnu.org/software/classpath/license.html.
+
+ SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
+
+-->
+
+<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/maven-v4_0_0.xsd">
+
+ <parent>
+ <groupId>org.eclipse.ee4j</groupId>
+ <artifactId>project</artifactId>
+ <version>1.0</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.glassfish</groupId>
+ <artifactId>javax.el.impl</artifactId>
+ <version>3.0.1-b11-SNAPSHOT</version>
+ <packaging>jar</packaging>
+ <name>Expression Language 3.0 Implementation</name>
+
+ <properties>
+ <!-- the bundle build number must be the same as the maven number -->
+ <bundle.version>3.0.0</bundle.version>
+ <!-- The most current api version -->
+ <spec.version>3.0</spec.version>
+ <extensionName>javax.el.impl</extensionName>
+ <bundle.symbolicName>com.sun.el.javax.el</bundle.symbolicName>
+ <vendorName>Oracle Corporation</vendorName>
+ <findbugs.version>2.5.2</findbugs.version>
+ <findbugs.exclude>${project.basedir}/exclude.xml</findbugs.exclude>
+ <findbugs.threshold>High</findbugs.threshold>
+ <tlda-license.url>http://hudson-sca.us.oracle.com/job/tlda-license/lastSuccessfulBuild/artifact</tlda-license.url>
+ </properties>
+
+ <description>Expression Language (JSR 341) Reference Implementation</description>
+ <url>https://projects.eclipse.org/projects/ee4j.el</url>
+
+
+ <issueManagement>
+ <system>github</system>
+ <url>https://github.com/eclipse-ee4j/el-ri/issues</url>
+ </issueManagement>
+
+ <licenses>
+ <license>
+ <name>EPL 2.0</name>
+ <url>http://www.eclipse.org/legal/epl-2.0</url>
+ <distribution>repo</distribution>
+ </license>
+ <license>
+ <name>GPL2 w/ CPE</name>
+ <url>https://www.gnu.org/software/classpath/license.html</url>
+ <distribution>repo</distribution>
+ </license>
+ </licenses>
+
+ <mailingLists>
+ <mailingList>
+ <name>EL mailing list</name>
+ <post>el-dev@eclipse.org</post>
+ <subscribe>https://dev.eclipse.org/mailman/listinfo/el-dev</subscribe>
+ <unsubscribe>https://dev.eclipse.org/mailman/listinfo/el-dev</unsubscribe>
+ <archive>https://dev.eclipse.org/mhonarc/lists/el-dev</archive>
+ </mailingList>
+ </mailingLists>
+
+ <scm>
+ <connection>scm:git:https://github.com/eclipse-ee4j/el-ri.git</connection>
+ <developerConnection>
+ scm:git:git@github.com:eclipse-ee4j/el-ri.git
+ </developerConnection>
+ <url>https://github.com/eclipse-ee4j/el-ri</url>
+ <tag>HEAD</tag>
+ </scm>
+
+ <developers>
+ <developer>
+ <id>yaminikb</id>
+ <name>Yamini K B</name>
+ <organization>Oracle Corporation</organization>
+ <organizationUrl>http://www.oracle.com/</organizationUrl>
+ </developer>
+ </developers>
+
+ <contributors>
+ <contributor>
+ <name>Kin-man Chung</name>
+ </contributor>
+ </contributors>
+
+ <build>
+ <plugins>
+ <!-- Configure maven-bundle-plugin to generate OSGi manifest. Please note: we use the manifest goal only and not the bundle goal.
+ The bundle goal can lead to very surprising results if the package names are not correctly specified. So, we use the jar plugin to generate the
+ jar. -->
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <version>1.4.3</version>
+ <configuration>
+ <instructions>
+ <Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
+ <Bundle-Description>
+ Expression Language ${spec.version} Implementation
+ </Bundle-Description>
+ <Bundle-Version>${bundle.version}</Bundle-Version>
+ <Extension-Name>${extensionName}</Extension-Name>
+ <Specification-Version>${spec.version}</Specification-Version>
+ <Specification-Vendor>${vendorName}</Specification-Vendor>
+ <Implementation-Version>${project.version}</Implementation-Version>
+ <Implementation-Vendor>${vendorName}</Implementation-Vendor>
+ </instructions>
+ </configuration>
+ <executions>
+ <execution>
+ <id>bundle-manifest</id>
+ <phase>process-classes</phase>
+ <goals>
+ <goal>manifest</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.4</version>
+ <configuration>
+ <archive>
+ <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+ </archive>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.0</version>
+ <configuration>
+ <source>1.7</source>
+ <target>1.7</target>
+ <compilerArgument>-Xlint:unchecked</compilerArgument>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <version> 2.2.1 </version>
+ <configuration>
+ <includePom>true</includePom>
+ </configuration>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar-no-fork</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>3.0.1</version>
+ <executions>
+ <execution>
+ <id>attach-javadocs</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ <configuration>
+ <additionalJOption>-Xdoclint:none</additionalJOption>
+ <groups>
+ <group>
+ <title>Expresion Language 3.0 Implementation</title>
+ <packages>com.sun.el</packages>
+ </group>
+ </groups>
+ <bottom> Copyright (c) 2013 Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms. </bottom>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <!-- Use ant to manually invoke javacc, as this required is very infrequently <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>javacc-maven-plugin</artifactId>
+ <version>2.6</version> <executions> <execution> <id>jjtree-javacc</id> <goals> <goal>jjtree-javacc</goal> </goals> <configuration> <sourceDirectory>src/main/java/com/sun/el/parser</sourceDirectory>
+ <outputDirectory>src/main/java/com/sun/el/parser</outputDirectory> </configuration> </execution> </executions> </plugin> -->
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <version>${findbugs.version}</version>
+ <configuration>
+ <threshold>${findbugs.threshold}</threshold>
+ <excludeFilterFile>${findbugs.exclude}</excludeFilterFile>
+ <findbugsXmlOutput>true</findbugsXmlOutput>
+ <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <configuration>
+ <mavenExecutorId>forked-path</mavenExecutorId>
+ <useReleaseProfile>false</useReleaseProfile>
+ <arguments>${release.arguments}</arguments>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.7.1</version>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.maven.surefire</groupId>
+ <artifactId>surefire-junit47</artifactId>
+ <version>2.7.1</version>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <forkMode>never</forkMode>
+ <!-- <parallel>classes</parallel> -->
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.glassfish.copyright</groupId>
+ <artifactId>glassfish-copyright-maven-plugin</artifactId>
+ <version>1.32</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-remote-resources-plugin</artifactId>
+ <version>1.2.1</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>process</goal>
+ </goals>
+ <configuration>
+ <resourceBundles>
+ <resourceBundle>org.glassfish:legal:1.1</resourceBundle>
+ </resourceBundles>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+
+
+ <resources>
+ <resource>
+ <directory>src/main/java</directory>
+ <includes>
+ <include>**/*.properties</include>
+ <include>**/*.xml</include>
+ </includes>
+ </resource>
+ </resources>
+ </build>
+
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <version>${findbugs.version}</version>
+ <configuration>
+ <threshold>${findbugs.threshold}</threshold>
+ <excludeFilterFile>${findbugs.exclude}</excludeFilterFile>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+
+ <dependencies>
+ <dependency>
+ <groupId>jakarta.el</groupId>
+ <artifactId>jakarta.el-api</artifactId>
+ <version>3.0.1-b07-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.12</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+
+ <profiles>
+ <profile>
+ <id>licensee</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>wagon-maven-plugin</artifactId>
+ <version>1.0-beta-4</version>
+ <inherited>false</inherited>
+ <executions>
+ <execution>
+ <id>get-license</id>
+ <phase>package</phase>
+ <goals>
+ <goal>download-single</goal>
+ </goals>
+ <configuration>
+ <url>${tlda-license.url}</url>
+ <fromFile>
+ TLDA_SCSL_Licensees_License_Notice.txt
+ </fromFile>
+ <toDir>${project.build.directory}/license</toDir>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.4</version>
+ <inherited>false</inherited>
+ <executions>
+ <execution>
+ <id>make-licensee-src-assembly</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <configuration>
+ <finalName>el-${project.version}-src</finalName>
+ <attach>false</attach>
+ <appendAssemblyId>false</appendAssemblyId>
+ <descriptors>
+ <descriptor>src/assembly/assembly.xml</descriptor>
+ </descriptors>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+</project>
diff --git a/pom.xml b/pom.xml
index abc1fc6..479cea1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -18,11 +18,11 @@
-->
<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/maven-v4_0_0.xsd">
-
+
<parent>
- <groupId>org.eclipse.ee4j</groupId>
- <artifactId>project</artifactId>
- <version>1.0</version>
+ <groupId>org.eclipse.ee4j</groupId>
+ <artifactId>project</artifactId>
+ <version>1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -67,22 +67,24 @@
<distribution>repo</distribution>
</license>
</licenses>
+
<mailingLists>
<mailingList>
- <name>EL mailing list</name>
- <post>el-dev@eclipse.org</post>
- <subscribe>https://dev.eclipse.org/mailman/listinfo/el-dev</subscribe>
- <unsubscribe>https://dev.eclipse.org/mailman/listinfo/el-dev</unsubscribe>
- <archive>https://dev.eclipse.org/mhonarc/lists/el-dev</archive>
+ <name>EL mailing list</name>
+ <post>el-dev@eclipse.org</post>
+ <subscribe>https://dev.eclipse.org/mailman/listinfo/el-dev</subscribe>
+ <unsubscribe>https://dev.eclipse.org/mailman/listinfo/el-dev</unsubscribe>
+ <archive>https://dev.eclipse.org/mhonarc/lists/el-dev</archive>
</mailingList>
</mailingLists>
+
<scm>
<connection>scm:git:https://github.com/eclipse-ee4j/el-ri.git</connection>
<developerConnection>
scm:git:git@github.com:eclipse-ee4j/el-ri.git
</developerConnection>
<url>https://github.com/eclipse-ee4j/el-ri</url>
- <tag>HEAD</tag>
+ <tag>HEAD</tag>
</scm>
<developers>
@@ -123,11 +125,10 @@
</execution>
</executions>
</plugin>
- <!-- Configure maven-bundle-plugin to generate OSGi manifest.
- Please note: we use the manifest goal only and not the bundle goal.
- The bundle goal can lead to very surprising results if the
- package names are not correctly specified. So,
- we use the jar plugin to generate the jar.-->
+
+ <!-- Configure maven-bundle-plugin to generate OSGi manifest. Please note: we use the manifest goal only and not the bundle goal.
+ The bundle goal can lead to very surprising results if the package names are not correctly specified. So, we use the jar plugin to generate the
+ jar. -->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
@@ -137,7 +138,7 @@
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
<Bundle-Description>
Expression Language ${spec.version} API and Implementation
-
+
</Bundle-Description>
<Bundle-Version>${bundle.version}</Bundle-Version>
<Extension-Name>${extensionName}</Extension-Name>
@@ -176,6 +177,7 @@
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
+
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
@@ -185,25 +187,30 @@
</configuration>
<executions>
<execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar-no-fork</goal>
- </goals>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar-no-fork</goal>
+ </goals>
</execution>
</executions>
</plugin>
+
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>2.8.1</version>
+ <version>3.0.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
- <goals>
- <goal>jar</goal>
- </goals>
+ <goals>
+ <goal>jar</goal>
+ </goals>
<configuration>
<sourcepath>api/src;impl/src</sourcepath>
+ <additionalJOption>-Xdoclint:none</additionalJOption>
+ <links>
+ <link>https://javaee.github.io/javaee-spec/javadocs/</link>
+ </links>
<groups>
<group>
<title>Expresion Language 3.0 API and Implementation</title>
@@ -215,25 +222,10 @@
</execution>
</executions>
</plugin>
-<!-- Use ant to manually invoke javacc, as this required is very infrequently
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>javacc-maven-plugin</artifactId>
- <version>2.6</version>
- <executions>
- <execution>
- <id>jjtree-javacc</id>
- <goals>
- <goal>jjtree-javacc</goal>
- </goals>
- <configuration>
- <sourceDirectory>src/main/java/com/sun/el/parser</sourceDirectory>
- <outputDirectory>src/main/java/com/sun/el/parser</outputDirectory>
- </configuration>
- </execution>
- </executions>
- </plugin>
--->
+
+ <!-- Use ant to manually invoke javacc, as this required is very infrequently <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>javacc-maven-plugin</artifactId>
+ <version>2.6</version> <executions> <execution> <id>jjtree-javacc</id> <goals> <goal>jjtree-javacc</goal> </goals> <configuration> <sourceDirectory>src/main/java/com/sun/el/parser</sourceDirectory>
+ <outputDirectory>src/main/java/com/sun/el/parser</outputDirectory> </configuration> </execution> </executions> </plugin> -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
@@ -245,6 +237,7 @@
<findbugsXmlWithMessages>true</findbugsXmlWithMessages>
</configuration>
</plugin>
+
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
@@ -253,7 +246,8 @@
<useReleaseProfile>false</useReleaseProfile>
<arguments>${release.arguments}</arguments>
</configuration>
- </plugin>
+ </plugin>
+
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.7.1</version>
@@ -266,34 +260,36 @@
</dependencies>
<configuration>
<forkMode>never</forkMode>
- <!--
- <parallel>classes</parallel>
- -->
+ <!-- <parallel>classes</parallel> -->
</configuration>
</plugin>
+
<plugin>
<groupId>org.glassfish.copyright</groupId>
<artifactId>glassfish-copyright-maven-plugin</artifactId>
<version>1.32</version>
</plugin>
+
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-remote-resources-plugin</artifactId>
<version>1.2.1</version>
<executions>
- <execution>
- <goals>
- <goal>process</goal>
- </goals>
- <configuration>
- <resourceBundles>
- <resourceBundle>org.glassfish:legal:1.1</resourceBundle>
- </resourceBundles>
- </configuration>
- </execution>
+ <execution>
+ <goals>
+ <goal>process</goal>
+ </goals>
+ <configuration>
+ <resourceBundles>
+ <resourceBundle>org.glassfish:legal:1.1</resourceBundle>
+ </resourceBundles>
+ </configuration>
+ </execution>
</executions>
</plugin>
</plugins>
+
+
<resources>
<resource>
<directory>api/src/main/java</directory>
@@ -311,6 +307,8 @@
</resource>
</resources>
</build>
+
+
<reporting>
<plugins>
<plugin>
@@ -322,6 +320,17 @@
<excludeFilterFile>${findbugs.exclude}</excludeFilterFile>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>3.0.1</version>
+ <configuration>
+ <excludePackageNames>com.sun.el.parser</excludePackageNames>
+ <sourceFileExcludes>
+ <sourceFileExclude>**/parser/*.java</sourceFileExclude>
+ </sourceFileExcludes>
+ </configuration>
+ </plugin>
</plugins>
</reporting>