Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ under the License.
<parent>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugins</artifactId>
<version>42</version>
<version>45</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -62,6 +62,7 @@ under the License.
<properties>
<mavenVersion>3.9.6</mavenVersion>
<project.build.outputTimestamp>2022-04-18T18:55:30Z</project.build.outputTimestamp>
<version.palantirJavaFormat>2.81.0</version.palantirJavaFormat>
</properties>

<dependencies>
Expand Down Expand Up @@ -103,6 +104,7 @@ under the License.
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${version.maven-plugin-tools}</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -153,6 +155,29 @@ under the License.
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.9.0</version>
<executions>
<execution>
<id>analyze</id>
<goals>
<goal>analyze-only</goal>
</goals>
<configuration>
<excludedClasses>
<exclude>.*org.sample.ejb.*</exclude>
</excludedClasses>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>run-its</id>
Expand All @@ -162,6 +187,7 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<version>3.9.1</version>
<configuration>
<debug>true</debug>
<projectsDirectory>src/it</projectsDirectory>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ public void testEjbComplianceVersionThreeWithDescriptor() throws Exception {
*
* @throws Exception if any exception occurs
*/
public void testEjbCompliance_3_0_WithoutDescriptor() throws Exception {
public void testEjbCompliance30WithoutDescriptor() throws Exception {
final MavenProjectResourcesStub project = createTestProject("compliance-nodescriptor-3");
final EjbMojo mojo = lookupMojoWithDefaultSettings(project);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,8 @@ private List<String> getList(int type) {
case ROOT_FILE:
retVal = rootFileList;
break;
default:
// do nothing
}

return retVal;
Expand Down
Loading