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
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.apache.maven</groupId>
<artifactId>maven-parent</artifactId>
<version>43</version>
<version>45</version>
<relativePath />
</parent>

Expand Down
2 changes: 1 addition & 1 deletion source-release/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ under the License.
<!-- The (possibly instrumented copy of the) Maven distribution we actually use for the tests. -->
<preparedMavenHome>${mavenHome}</preparedMavenHome>
<!-- the version of maven-assembly-plugin to use in ITs -->
<assemblyPluginVersion>2.6</assemblyPluginVersion>
<assemblyPluginVersion>3.7.1</assemblyPluginVersion>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import static org.apache.its.util.TestUtils.createVerifier;
import static org.apache.its.util.TestUtils.getTestDir;

public class IT_000_BasicArchiveCreation {
public class IT000BasicArchiveCreation {

private static final String BASENAME = "basics";
private static final String VERSION = "1";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import static org.apache.its.util.TestUtils.createVerifier;
import static org.apache.its.util.TestUtils.getTestDir;

public class IT_001_ExcludeBuildOutputDirectory {
public class IT001ExcludeBuildOutputDirectory {

private static final String BASENAME = "build-output-dir";
private static final String VERSION = "1";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import static org.apache.its.util.TestUtils.createVerifier;
import static org.apache.its.util.TestUtils.getTestDir;

public class IT_002_IncludeSrcDirWithBuildOutputDirName {
public class IT002IncludeSrcDirWithBuildOutputDirName {

private static final String BASENAME = "src-contains-output-dir-name";
private static final String VERSION = "1";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import static org.apache.its.util.TestUtils.createVerifier;
import static org.apache.its.util.TestUtils.getTestDir;

public class IT_003_SharedResourceInclusion {
public class IT003SharedResourceInclusion {

private static final String BASENAME = "shared-resources";
private static final String VERSION = "1";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
import static org.apache.its.util.TestUtils.createVerifier;
import static org.apache.its.util.TestUtils.getTestDir;

public class IT_004_IdeExcludes {
public class IT004IdeExcludes {

private static final String BASENAME = "ide-excludes";
private static final String VERSION = "1";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import static org.apache.its.util.TestUtils.createVerifier;
import static org.apache.its.util.TestUtils.getTestDir;

public class IT_005_MiscellaneousExcludes {
public class IT005MiscellaneousExcludes {

private static final String BASENAME = "misc-excludes";
private static final String VERSION = "1";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import static org.apache.its.util.TestUtils.createVerifier;
import static org.apache.its.util.TestUtils.getTestDir;

public class IT_006_CiExcludes {
public class IT006CiExcludes {

private static final String BASENAME = "ci-excludes";
private static final String VERSION = "1";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import static org.apache.its.util.TestUtils.createVerifier;
import static org.apache.its.util.TestUtils.getTestDir;

public class IT_ExcludeSrcDirWithinBuildOutputDir {
public class ITExcludeSrcDirWithinBuildOutputDir {

private static final String BASENAME = "output-dir-contains-src-name";
private static final String VERSION = "1";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import static org.apache.its.util.TestUtils.createVerifier;
import static org.apache.its.util.TestUtils.getTestDir;

public class IT_IncludeIdeFilesWithinSrcDir {
public class ITIncludeIdeFilesWithinSrcDir {

private static final String BASENAME = "src-contains-ide-files";
private static final String VERSION = "1";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
import static org.apache.its.util.TestUtils.createVerifier;
import static org.apache.its.util.TestUtils.getTestDir;

public class IT_SingleModule {
public class ITSingleModule {

private static final String BASENAME = "single-module";
private static final String VERSION = "1";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
import static org.apache.its.util.TestUtils.createVerifier;
import static org.apache.its.util.TestUtils.getTestDir;

public class IT_ZipAndTarCreation {
public class ITZipAndTarCreation {

private static final String BASENAME = "zip-and-tar";
private static final String VERSION = "1";
Expand Down
Loading