Skip to content

Commit 3dca82f

Browse files
committed
[MCOMPILER-526] Add packages to please the formatter
1 parent f9b6bd0 commit 3dca82f

File tree

65 files changed

+84
-28
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+84
-28
lines changed

src/it/MCOMPILER-328_multiReleaseOutput/src/main/java/MyClass.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19+
package foo;
1920

2021
public class MyClass
2122
{

src/it/MCOMPILER-328_multiReleaseOutput/verify.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
* under the License.
1818
*/
1919

20-
assert !new File( basedir, 'target/classes/MyClass.class').exists()
20+
assert !new File( basedir, 'target/classes/foo/MyClass.class').exists()
2121

22-
assert new File( basedir, 'target/classes/META-INF/versions/9/MyClass.class').exists()
22+
assert new File( basedir, 'target/classes/META-INF/versions/9/foo/MyClass.class').exists()

src/it/MCOMPILER-349_dependencyChanged/dependent-module/src/main/java/Main.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19+
package foo;
1920

2021
public class Main
2122
{

src/it/MCOMPILER-349_dependencyChanged/service/src/main/java/TestService.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19+
package foo;
1920

2021
public class TestService
2122
{

src/it/MCOMPILER-474_recompile-dependent-when-package/dependent-module/src/main/java/Main.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19+
package foo;
1920

2021
public class Main
2122
{

src/it/MCOMPILER-474_recompile-dependent-when-package/service/src/main/java/TestService.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19+
package foo;
1920

2021
public class TestService
2122
{

src/it/default-fork-windows/src/main/java/MyClass.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19+
package foo;
1920

2021
public class MyClass
2122
{

src/it/default-fork-windows/src/test/java/MyTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19+
package foo;
1920

2021
import junit.framework.TestCase;
2122

src/it/default-fork-windows/verify.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
* under the License.
1818
*/
1919

20-
assert new File( basedir, 'target/classes/MyClass.class').exists()
20+
assert new File( basedir, 'target/classes/foo/MyClass.class').exists()
2121

22-
assert new File( basedir, 'target/test-classes/MyTest.class').exists()
22+
assert new File( basedir, 'target/test-classes/foo/MyTest.class').exists()
2323

2424
assert !new File( basedir, 'target/classes/javac.sh').exists()
2525
assert !new File( basedir, 'target/classes/javac.bat').exists()

src/it/default-fork/src/main/java/MyClass.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19+
package foo;
1920

2021
public class MyClass
2122
{

0 commit comments

Comments
 (0)