Skip to content

Commit

Permalink
update gitignore and fixed maven compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
DarioMavilia committed Dec 9, 2024
1 parent ca8c1ef commit 4ec47dd
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Target directory
/target/

# Other stuff
.idea
*.iml

# Compiled class file
*.class

Expand Down
5 changes: 2 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.unitedlands</groupId>
<artifactId>CrafterBlocker</artifactId>
<version>1.1</version>
<version>1.1.1</version>
<packaging>jar</packaging>

<name>CrafterBlocker</name>
Expand All @@ -24,8 +24,7 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<release>${java.version}</release>
</configuration>
</plugin>
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: CrafterBlocker
version: '1.1'
version: '1.1.1'
main: org.unitedlands.crafterBlocker.CrafterBlocker
api-version: '1.21'
authors: [Litning11]
Expand Down
2 changes: 1 addition & 1 deletion target/classes/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: CrafterBlocker
version: '1.1'
version: '1.1.1'
main: org.unitedlands.crafterBlocker.CrafterBlocker
api-version: '1.21'
authors: [Litning11]
Expand Down
2 changes: 1 addition & 1 deletion target/maven-archiver/pom.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
artifactId=CrafterBlocker
groupId=org.unitedlands
version=1.1
version=1.1.1

0 comments on commit 4ec47dd

Please sign in to comment.