Skip to content

Commit 4f3512c

Browse files
committed
Updated license headers and java version to java 11
1 parent fe4cba4 commit 4f3512c

File tree

98 files changed

+103
-100
lines changed

Some content is hidden

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

98 files changed

+103
-100
lines changed

pom.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,10 @@
208208
<artifactId>maven-javadoc-plugin</artifactId>
209209
<version>3.2.0</version>
210210
<configuration>
211-
<source>8</source>
211+
<source>11</source>
212+
<javadocExecutable>
213+
${java.home}/bin/javadoc
214+
</javadocExecutable>
212215
</configuration>
213216
<executions>
214217
<execution>
@@ -258,8 +261,8 @@
258261
<artifactId>maven-compiler-plugin</artifactId>
259262
<version>3.8.1</version>
260263
<configuration>
261-
<source>8</source>
262-
<target>8</target>
264+
<source>11</source>
265+
<target>11</target>
263266
</configuration>
264267
</plugin>
265268
</plugins>

src/main/java/de/rub/nds/modifiablevariable/FileConfigurationException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* ModifiableVariable - A Variable Concept for Runtime Modifications
33
*
4-
* Copyright 2014-2021 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
4+
* Copyright 2014-2022 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
55
*
66
* Licensed under Apache License, Version 2.0
77
* http://www.apache.org/licenses/LICENSE-2.0.txt

src/main/java/de/rub/nds/modifiablevariable/HoldsModifiableVariable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* ModifiableVariable - A Variable Concept for Runtime Modifications
33
*
4-
* Copyright 2014-2021 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
4+
* Copyright 2014-2022 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
55
*
66
* Licensed under Apache License, Version 2.0
77
* http://www.apache.org/licenses/LICENSE-2.0.txt

src/main/java/de/rub/nds/modifiablevariable/ModifiableVariable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* ModifiableVariable - A Variable Concept for Runtime Modifications
33
*
4-
* Copyright 2014-2021 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
4+
* Copyright 2014-2022 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
55
*
66
* Licensed under Apache License, Version 2.0
77
* http://www.apache.org/licenses/LICENSE-2.0.txt

src/main/java/de/rub/nds/modifiablevariable/ModifiableVariableFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* ModifiableVariable - A Variable Concept for Runtime Modifications
33
*
4-
* Copyright 2014-2021 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
4+
* Copyright 2014-2022 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
55
*
66
* Licensed under Apache License, Version 2.0
77
* http://www.apache.org/licenses/LICENSE-2.0.txt

src/main/java/de/rub/nds/modifiablevariable/ModifiableVariableProperty.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* ModifiableVariable - A Variable Concept for Runtime Modifications
33
*
4-
* Copyright 2014-2021 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
4+
* Copyright 2014-2022 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
55
*
66
* Licensed under Apache License, Version 2.0
77
* http://www.apache.org/licenses/LICENSE-2.0.txt

src/main/java/de/rub/nds/modifiablevariable/ModificationFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* ModifiableVariable - A Variable Concept for Runtime Modifications
33
*
4-
* Copyright 2014-2021 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
4+
* Copyright 2014-2022 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
55
*
66
* Licensed under Apache License, Version 2.0
77
* http://www.apache.org/licenses/LICENSE-2.0.txt

src/main/java/de/rub/nds/modifiablevariable/VariableModification.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* ModifiableVariable - A Variable Concept for Runtime Modifications
33
*
4-
* Copyright 2014-2021 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
4+
* Copyright 2014-2022 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
55
*
66
* Licensed under Apache License, Version 2.0
77
* http://www.apache.org/licenses/LICENSE-2.0.txt

src/main/java/de/rub/nds/modifiablevariable/biginteger/BigIntegerAddModification.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* ModifiableVariable - A Variable Concept for Runtime Modifications
33
*
4-
* Copyright 2014-2021 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
4+
* Copyright 2014-2022 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
55
*
66
* Licensed under Apache License, Version 2.0
77
* http://www.apache.org/licenses/LICENSE-2.0.txt

src/main/java/de/rub/nds/modifiablevariable/biginteger/BigIntegerExplicitValueModification.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* ModifiableVariable - A Variable Concept for Runtime Modifications
33
*
4-
* Copyright 2014-2021 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
4+
* Copyright 2014-2022 Ruhr University Bochum, Paderborn University, Hackmanit GmbH
55
*
66
* Licensed under Apache License, Version 2.0
77
* http://www.apache.org/licenses/LICENSE-2.0.txt

0 commit comments

Comments
 (0)