Skip to content

Commit b3251e7

Browse files
committed
Updated license plugin updated Junit to Junit5
1 parent 68bcff6 commit b3251e7

File tree

83 files changed

+1014
-1810
lines changed

Some content is hidden

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

83 files changed

+1014
-1810
lines changed

.gitignore

+16-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
1-
target
2-
.settings
1+
*~
2+
target/
3+
pom.xml.tag
4+
pom.xml.releaseBackup
5+
pom.xml.versionsBackup
6+
pom.xml.next
7+
release.properties
8+
dependency-reduced-pom.xml
9+
buildNumber.properties
10+
.mvn/timing.properties
11+
nb-configuration.xml
312
.project
4-
.classpath
13+
.settings
14+
.classpath
15+
nbactions.xml
16+
.idea
17+

LICENSE.txt LICENSE.LGPL-3.0.txt

File renamed without changes.

de.ibapl.fhz4j.console/pom.xml

-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@
1717
<name>FHZ4J Console</name>
1818

1919
<dependencies>
20-
<dependency>
21-
<groupId>junit</groupId>
22-
<artifactId>junit</artifactId>
23-
<scope>test</scope>
24-
</dependency>
2520
<dependency>
2621
<groupId>de.ibapl.spsw</groupId>
2722
<artifactId>de.ibapl.spsw.jniprovider</artifactId>

de.ibapl.fhz4j.console/src/main/java/de/ibapl/fhz4j/console/Main.java

+6-12
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,23 @@
1-
/*-
2-
* #%L
3-
* FHZ4J Console
4-
* %%
5-
* Copyright (C) 2009 - 2018 Arne Plöse
6-
* %%
1+
/*
72
* FHZ4J - Drivers for the Wireless FS20, FHT and HMS protocol https://github.com/aploese/fhz4j/
8-
* Copyright (C) 2009, 2017, Arne Plöse and individual contributors as indicated
3+
* Copyright (C) 2009-2019, Arne Plöse and individual contributors as indicated
94
* by the @authors tag. See the copyright.txt in the distribution for a
105
* full listing of individual contributors.
11-
*
6+
*
127
* This is free software; you can redistribute it and/or modify it
13-
* under the terms of the GNU General Public License as
8+
* under the terms of the GNU Lesser General Public License as
149
* published by the Free Software Foundation; either version 3 of
1510
* the License, or (at your option) any later version.
16-
*
11+
*
1712
* This software is distributed in the hope that it will be useful,
1813
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1914
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2015
* Lesser General Public License for more details.
21-
*
16+
*
2217
* You should have received a copy of the GNU Lesser General Public
2318
* License along with this software; if not, write to the Free
2419
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
2520
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
26-
* #L%
2721
*/
2822
package de.ibapl.fhz4j.console;
2923

de.ibapl.fhz4j.parser.cul/pom.xml

+8-5
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,14 @@
2525
<groupId>org.osgi</groupId>
2626
<artifactId>org.osgi.dto</artifactId>
2727
</dependency>
28-
<dependency>
29-
<groupId>junit</groupId>
30-
<artifactId>junit</artifactId>
31-
<scope>test</scope>
32-
</dependency>
28+
<dependency>
29+
<groupId>org.junit.jupiter</groupId>
30+
<artifactId>junit-jupiter-api</artifactId>
31+
</dependency>
32+
<dependency>
33+
<groupId>org.junit.jupiter</groupId>
34+
<artifactId>junit-jupiter-engine</artifactId>
35+
</dependency>
3336
<dependency>
3437
<groupId>org.easymock</groupId>
3538
<artifactId>easymockclassextension</artifactId>

de.ibapl.fhz4j.parser.cul/src/main/java/de/ibapl/fhz4j/LogUtils.java

+6-12
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,23 @@
1-
/*-
2-
* #%L
3-
* FHZ4J Core
4-
* %%
5-
* Copyright (C) 2009 - 2018 Arne Plöse
6-
* %%
1+
/*
72
* FHZ4J - Drivers for the Wireless FS20, FHT and HMS protocol https://github.com/aploese/fhz4j/
8-
* Copyright (C) 2009, 2017, Arne Plöse and individual contributors as indicated
3+
* Copyright (C) 2009-2019, Arne Plöse and individual contributors as indicated
94
* by the @authors tag. See the copyright.txt in the distribution for a
105
* full listing of individual contributors.
11-
*
6+
*
127
* This is free software; you can redistribute it and/or modify it
13-
* under the terms of the GNU General Public License as
8+
* under the terms of the GNU Lesser General Public License as
149
* published by the Free Software Foundation; either version 3 of
1510
* the License, or (at your option) any later version.
16-
*
11+
*
1712
* This software is distributed in the hope that it will be useful,
1813
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1914
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2015
* Lesser General Public License for more details.
21-
*
16+
*
2217
* You should have received a copy of the GNU Lesser General Public
2318
* License along with this software; if not, write to the Free
2419
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
2520
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
26-
* #L%
2721
*/
2822
package de.ibapl.fhz4j;
2923

de.ibapl.fhz4j.parser.cul/src/main/java/de/ibapl/fhz4j/api/FhzAdapter.java

+6-12
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,23 @@
1-
/*-
2-
* #%L
3-
* FHZ4J Core
4-
* %%
5-
* Copyright (C) 2009 - 2018 Arne Plöse
6-
* %%
1+
/*
72
* FHZ4J - Drivers for the Wireless FS20, FHT and HMS protocol https://github.com/aploese/fhz4j/
8-
* Copyright (C) 2009, 2017, Arne Plöse and individual contributors as indicated
3+
* Copyright (C) 2009-2019, Arne Plöse and individual contributors as indicated
94
* by the @authors tag. See the copyright.txt in the distribution for a
105
* full listing of individual contributors.
11-
*
6+
*
127
* This is free software; you can redistribute it and/or modify it
13-
* under the terms of the GNU General Public License as
8+
* under the terms of the GNU Lesser General Public License as
149
* published by the Free Software Foundation; either version 3 of
1510
* the License, or (at your option) any later version.
16-
*
11+
*
1712
* This software is distributed in the hope that it will be useful,
1813
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1914
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2015
* Lesser General Public License for more details.
21-
*
16+
*
2217
* You should have received a copy of the GNU Lesser General Public
2318
* License along with this software; if not, write to the Free
2419
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
2520
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
26-
* #L%
2721
*/
2822
package de.ibapl.fhz4j.api;
2923

de.ibapl.fhz4j.parser.cul/src/main/java/de/ibapl/fhz4j/api/FhzDataListener.java

+6-12
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,23 @@
1-
/*-
2-
* #%L
3-
* FHZ4J Core
4-
* %%
5-
* Copyright (C) 2009 - 2018 Arne Plöse
6-
* %%
1+
/*
72
* FHZ4J - Drivers for the Wireless FS20, FHT and HMS protocol https://github.com/aploese/fhz4j/
8-
* Copyright (C) 2009, 2017, Arne Plöse and individual contributors as indicated
3+
* Copyright (C) 2009-2019, Arne Plöse and individual contributors as indicated
94
* by the @authors tag. See the copyright.txt in the distribution for a
105
* full listing of individual contributors.
11-
*
6+
*
127
* This is free software; you can redistribute it and/or modify it
13-
* under the terms of the GNU General Public License as
8+
* under the terms of the GNU Lesser General Public License as
149
* published by the Free Software Foundation; either version 3 of
1510
* the License, or (at your option) any later version.
16-
*
11+
*
1712
* This software is distributed in the hope that it will be useful,
1813
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1914
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2015
* Lesser General Public License for more details.
21-
*
16+
*
2217
* You should have received a copy of the GNU Lesser General Public
2318
* License along with this software; if not, write to the Free
2419
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
2520
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
26-
* #L%
2721
*/
2822
package de.ibapl.fhz4j.api;
2923

de.ibapl.fhz4j.parser.cul/src/main/java/de/ibapl/fhz4j/api/FhzMessage.java

+6-12
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,23 @@
1-
/*-
2-
* #%L
3-
* FHZ4J Core
4-
* %%
5-
* Copyright (C) 2009 - 2018 Arne Plöse
6-
* %%
1+
/*
72
* FHZ4J - Drivers for the Wireless FS20, FHT and HMS protocol https://github.com/aploese/fhz4j/
8-
* Copyright (C) 2009, 2017, Arne Plöse and individual contributors as indicated
3+
* Copyright (C) 2009-2019, Arne Plöse and individual contributors as indicated
94
* by the @authors tag. See the copyright.txt in the distribution for a
105
* full listing of individual contributors.
11-
*
6+
*
127
* This is free software; you can redistribute it and/or modify it
13-
* under the terms of the GNU General Public License as
8+
* under the terms of the GNU Lesser General Public License as
149
* published by the Free Software Foundation; either version 3 of
1510
* the License, or (at your option) any later version.
16-
*
11+
*
1712
* This software is distributed in the hope that it will be useful,
1813
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1914
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2015
* Lesser General Public License for more details.
21-
*
16+
*
2217
* You should have received a copy of the GNU Lesser General Public
2318
* License along with this software; if not, write to the Free
2419
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
2520
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
26-
* #L%
2721
*/
2822
package de.ibapl.fhz4j.api;
2923

de.ibapl.fhz4j.parser.cul/src/main/java/de/ibapl/fhz4j/api/FhzProtocol.java

+6-12
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,23 @@
1-
/*-
2-
* #%L
3-
* FHZ4J Core
4-
* %%
5-
* Copyright (C) 2009 - 2018 Arne Plöse
6-
* %%
1+
/*
72
* FHZ4J - Drivers for the Wireless FS20, FHT and HMS protocol https://github.com/aploese/fhz4j/
8-
* Copyright (C) 2009, 2017, Arne Plöse and individual contributors as indicated
3+
* Copyright (C) 2009-2019, Arne Plöse and individual contributors as indicated
94
* by the @authors tag. See the copyright.txt in the distribution for a
105
* full listing of individual contributors.
11-
*
6+
*
127
* This is free software; you can redistribute it and/or modify it
13-
* under the terms of the GNU General Public License as
8+
* under the terms of the GNU Lesser General Public License as
149
* published by the Free Software Foundation; either version 3 of
1510
* the License, or (at your option) any later version.
16-
*
11+
*
1712
* This software is distributed in the hope that it will be useful,
1813
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1914
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2015
* Lesser General Public License for more details.
21-
*
16+
*
2217
* You should have received a copy of the GNU Lesser General Public
2318
* License along with this software; if not, write to the Free
2419
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
2520
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
26-
* #L%
2721
*/
2822
package de.ibapl.fhz4j.api;
2923

Original file line numberDiff line numberDiff line change
@@ -1,29 +1,23 @@
1-
/*-
2-
* #%L
3-
* FHZ4J Core
4-
* %%
5-
* Copyright (C) 2009 - 2018 Arne Plöse
6-
* %%
1+
/*
72
* FHZ4J - Drivers for the Wireless FS20, FHT and HMS protocol https://github.com/aploese/fhz4j/
8-
* Copyright (C) 2009, 2017, Arne Plöse and individual contributors as indicated
3+
* Copyright (C) 2009-2019, Arne Plöse and individual contributors as indicated
94
* by the @authors tag. See the copyright.txt in the distribution for a
105
* full listing of individual contributors.
11-
*
6+
*
127
* This is free software; you can redistribute it and/or modify it
13-
* under the terms of the GNU General Public License as
8+
* under the terms of the GNU Lesser General Public License as
149
* published by the Free Software Foundation; either version 3 of
1510
* the License, or (at your option) any later version.
16-
*
11+
*
1712
* This software is distributed in the hope that it will be useful,
1813
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1914
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2015
* Lesser General Public License for more details.
21-
*
16+
*
2217
* You should have received a copy of the GNU Lesser General Public
2318
* License along with this software; if not, write to the Free
2419
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
2520
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
26-
* #L%
2721
*/
2822
@org.osgi.annotation.versioning.Version("1.1.0")
2923
package de.ibapl.fhz4j.api;

de.ibapl.fhz4j.parser.cul/src/main/java/de/ibapl/fhz4j/cul/CulAdapter.java

+6-12
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,23 @@
1-
/*-
2-
* #%L
3-
* FHZ4J Console
4-
* %%
5-
* Copyright (C) 2009 - 2018 Arne Plöse
6-
* %%
1+
/*
72
* FHZ4J - Drivers for the Wireless FS20, FHT and HMS protocol https://github.com/aploese/fhz4j/
8-
* Copyright (C) 2009, 2017, Arne Plöse and individual contributors as indicated
3+
* Copyright (C) 2009-2019, Arne Plöse and individual contributors as indicated
94
* by the @authors tag. See the copyright.txt in the distribution for a
105
* full listing of individual contributors.
11-
*
6+
*
127
* This is free software; you can redistribute it and/or modify it
13-
* under the terms of the GNU General Public License as
8+
* under the terms of the GNU Lesser General Public License as
149
* published by the Free Software Foundation; either version 3 of
1510
* the License, or (at your option) any later version.
16-
*
11+
*
1712
* This software is distributed in the hope that it will be useful,
1813
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1914
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2015
* Lesser General Public License for more details.
21-
*
16+
*
2217
* You should have received a copy of the GNU Lesser General Public
2318
* License along with this software; if not, write to the Free
2419
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
2520
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
26-
* #L%
2721
*/
2822
package de.ibapl.fhz4j.cul;
2923

Original file line numberDiff line numberDiff line change
@@ -1,29 +1,23 @@
1-
/*-
2-
* #%L
3-
* FHZ4J Core
4-
* %%
5-
* Copyright (C) 2009 - 2018 Arne Plöse
6-
* %%
1+
/*
72
* FHZ4J - Drivers for the Wireless FS20, FHT and HMS protocol https://github.com/aploese/fhz4j/
8-
* Copyright (C) 2009, 2017, Arne Plöse and individual contributors as indicated
3+
* Copyright (C) 2009-2019, Arne Plöse and individual contributors as indicated
94
* by the @authors tag. See the copyright.txt in the distribution for a
105
* full listing of individual contributors.
11-
*
6+
*
127
* This is free software; you can redistribute it and/or modify it
13-
* under the terms of the GNU General Public License as
8+
* under the terms of the GNU Lesser General Public License as
149
* published by the Free Software Foundation; either version 3 of
1510
* the License, or (at your option) any later version.
16-
*
11+
*
1712
* This software is distributed in the hope that it will be useful,
1813
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1914
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2015
* Lesser General Public License for more details.
21-
*
16+
*
2217
* You should have received a copy of the GNU Lesser General Public
2318
* License along with this software; if not, write to the Free
2419
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
2520
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
26-
* #L%
2721
*/
2822
@org.osgi.annotation.versioning.Version("1.0.0")
2923
package de.ibapl.fhz4j;

0 commit comments

Comments
 (0)