Skip to content

Commit 1942159

Browse files
committed
Standardise repo: bump beast to beta4, surefire 3.5.2, fix license metadata
- beast.version 2.8.0-beta2 -> 2.8.0-beta4 - maven-surefire-plugin 3.1.2 -> 3.5.2 - LICENSE.txt -> LICENSE (standard filename) - Fix pom license: was LGPL v3 but file is LGPL v2.1 - Standardise .gitignore across BEAST3 packages
1 parent 79bb59b commit 1942159

File tree

3 files changed

+23
-9
lines changed

3 files changed

+23
-9
lines changed

.gitignore

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
1-
# IntelliJ files
2-
/.idea
3-
/morph-models.iml
4-
/out
1+
.DS_Store
52

6-
# Maven build output
3+
# Build output
4+
/out
5+
/bin
76
target/
7+
**/target/
8+
9+
# IntelliJ
10+
/.idea
11+
*.iml
12+
13+
# Eclipse
14+
.classpath
15+
.project
16+
/build
17+
18+
# BEAST run output
19+
*.log
20+
*.trees
21+
*.xml.state
822

923
# Package ZIPs
1024
*.v*.zip
File renamed without changes.

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616
<licenses>
1717
<license>
18-
<name>GNU Lesser General Public License v3.0</name>
19-
<url>https://www.gnu.org/licenses/lgpl-3.0.html</url>
18+
<name>GNU Lesser General Public License v2.1</name>
19+
<url>https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html</url>
2020
</license>
2121
</licenses>
2222

@@ -38,7 +38,7 @@
3838
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
3939
<maven.compiler.release>25</maven.compiler.release>
4040

41-
<beast.version>2.8.0-beta2</beast.version>
41+
<beast.version>2.8.0-beta4</beast.version>
4242
<javafx.version>25.0.2</javafx.version>
4343
<beast.module>beast.base</beast.module>
4444
<beast.main>beast.base.minimal.BeastMain</beast.main>
@@ -100,7 +100,7 @@
100100
<plugin>
101101
<groupId>org.apache.maven.plugins</groupId>
102102
<artifactId>maven-surefire-plugin</artifactId>
103-
<version>3.1.2</version>
103+
<version>3.5.2</version>
104104
<configuration>
105105
<workingDirectory>${project.build.testOutputDirectory}</workingDirectory>
106106
<argLine>

0 commit comments

Comments
 (0)