Skip to content

Commit 84c353b

Browse files
committed
Add license header
1 parent 9c08f8f commit 84c353b

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

junit-modular-world/src/build/Build.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/*
2+
* Copyright 2015-2025 the original author or authors.
3+
*
4+
* All rights reserved. This program and the accompanying materials are
5+
* made available under the terms of the Eclipse Public License v2.0 which
6+
* accompanies this distribution and is available at
7+
*
8+
* https://www.eclipse.org/legal/epl-v20.html
9+
*/
10+
11+
// default package
12+
113
public class Build {
214
public static void main(String[] args) throws Exception {
315
var project = Project.ofCurrentWorkingDirectory();

junit-modular-world/src/build/Compile.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/*
2+
* Copyright 2015-2025 the original author or authors.
3+
*
4+
* All rights reserved. This program and the accompanying materials are
5+
* made available under the terms of the Eclipse Public License v2.0 which
6+
* accompanies this distribution and is available at
7+
*
8+
* https://www.eclipse.org/legal/epl-v20.html
9+
*/
10+
11+
// default package
12+
113
public class Compile {
214
public static void main(String[] args) throws Exception {
315
Project.ofCurrentWorkingDirectory().compile();

junit-modular-world/src/build/Project.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
/*
2+
* Copyright 2015-2025 the original author or authors.
3+
*
4+
* All rights reserved. This program and the accompanying materials are
5+
* made available under the terms of the Eclipse Public License v2.0 which
6+
* accompanies this distribution and is available at
7+
*
8+
* https://www.eclipse.org/legal/epl-v20.html
9+
*/
10+
11+
// default package
12+
113
import java.io.*;
214
import java.net.*;
315
import java.nio.file.*;

0 commit comments

Comments
 (0)