Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Dec 13, 2024
1 parent c6f4d2e commit 40be463
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,9 @@
*/
package org.apache.maven.it;

import org.junit.jupiter.api.Test;

import java.io.File;

import static org.junit.jupiter.api.Assertions.assertThrows;
import org.junit.jupiter.api.Test;

/**
* This is a test set for <a href="https://issues.apache.org/jira/browse/MNG-8244">MNG-8244</a>.
Expand Down
26 changes: 12 additions & 14 deletions its/core-it-suite/src/test/resources/mng-8244-phase-all/pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<project xmlns="http://maven.apache.org/POM/4.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.1.0 https://maven.apache.org/xsd/maven-4.1.0.xsd"
root="true">
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" root="true" xsi:schemaLocation="http://maven.apache.org/POM/4.1.0 https://maven.apache.org/xsd/maven-4.1.0.xsd">

<parent>
<groupId>com.soebes.smpp</groupId>
<artifactId>smpp</artifactId>
<version>7.0.0</version>
<relativePath/>
<relativePath />
</parent>
<groupId>com.soebes.maven.bugs</groupId>
<artifactId>mng-8244</artifactId>
Expand Down Expand Up @@ -39,10 +37,10 @@
</execution>
<execution>
<id>after:integration-test</id>
<phase>after:integration-test</phase>
<goals>
<goal>verify</goal>
</goals>
<phase>after:integration-test</phase>
</execution>
</executions>
</plugin>
Expand All @@ -52,10 +50,10 @@
<executions>
<execution>
<id>before-clean</id>
<phase>before:clean</phase>
<goals>
<goal>echo</goal>
</goals>
<phase>before:clean</phase>
<configuration>
<echos>
<echo>Hallo 'before:clean' phase.</echo>
Expand All @@ -64,10 +62,10 @@
</execution>
<execution>
<id>after-clean</id>
<phase>after:clean</phase>
<goals>
<goal>echo</goal>
</goals>
<phase>after:clean</phase>
<configuration>
<echos>
<echo>Hallo 'after:clean' phase.</echo>
Expand All @@ -76,10 +74,10 @@
</execution>
<execution>
<id>before-build</id>
<phase>before:build</phase>
<goals>
<goal>echo</goal>
</goals>
<phase>before:build</phase>
<configuration>
<echos>
<echo>Hallo 'before:build' phase.</echo>
Expand All @@ -88,10 +86,10 @@
</execution>
<execution>
<id>build</id>
<phase>build</phase>
<goals>
<goal>echo</goal>
</goals>
<phase>build</phase>
<configuration>
<echos>
<echo>Hallo 'build' phase.</echo>
Expand All @@ -100,10 +98,10 @@
</execution>
<execution>
<id>after-build</id>
<phase>after:build</phase>
<goals>
<goal>echo</goal>
</goals>
<phase>after:build</phase>
<configuration>
<echos>
<echo>Hallo 'after:build' phase.</echo>
Expand All @@ -112,10 +110,10 @@
</execution>
<execution>
<id>before-all</id>
<phase>before:all</phase>
<goals>
<goal>echo</goal>
</goals>
<phase>before:all</phase>
<configuration>
<echos>
<echo>Hallo 'before:all' phase.</echo>
Expand All @@ -124,10 +122,10 @@
</execution>
<execution>
<id>all</id>
<phase>all</phase>
<goals>
<goal>echo</goal>
</goals>
<phase>all</phase>
<configuration>
<echos>
<echo>Hallo 'all' phase.</echo>
Expand All @@ -136,10 +134,10 @@
</execution>
<execution>
<id>after-all</id>
<phase>after:all</phase>
<goals>
<goal>echo</goal>
</goals>
<phase>after:all</phase>
<configuration>
<echos>
<echo>Hallo 'after:all' phase.</echo>
Expand Down

0 comments on commit 40be463

Please sign in to comment.