Bump version to 1.0.0-dev

This commit is contained in:
Braydon 2023-12-15 02:55:47 -05:00
parent ecdaf89d75
commit ba15dfc9d4

12
pom.xml

@ -7,7 +7,7 @@
<!--Project Details--> <!--Project Details-->
<groupId>me.braydon</groupId> <groupId>me.braydon</groupId>
<artifactId>Feather</artifactId> <artifactId>Feather</artifactId>
<version>1.0.0</version> <version>1.0.1-dev</version>
<properties> <properties>
<java.version>8</java.version> <java.version>8</java.version>
@ -18,7 +18,7 @@
<build> <build>
<plugins> <plugins>
<!--Used for compiling the source code with the proper Java version--> <!-- Used for compiling the source code with the proper Java version -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
@ -27,13 +27,13 @@
<source>${java.version}</source> <source>${java.version}</source>
<target>${java.version}</target> <target>${java.version}</target>
<!--Enable incremental builds, this is reversed due to--> <!-- Enable incremental builds, this is reversed due to -->
<!--a bug as seen in https://issues.apache.org/jira/browse/MCOMPILER-209--> <!-- a bug as seen in https://issues.apache.org/jira/browse/MCOMPILER-209 -->
<useIncrementalCompilation>false</useIncrementalCompilation> <useIncrementalCompilation>false</useIncrementalCompilation>
</configuration> </configuration>
</plugin> </plugin>
<!--Handles shading of dependencies in the final output jar--> <!-- Handles shading of dependencies in the final output jar -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId> <artifactId>maven-shade-plugin</artifactId>
@ -70,7 +70,7 @@
</executions> </executions>
</plugin> </plugin>
<!--Used for generating a git properties file during build--> <!-- Used for generating a git properties file during build -->
<plugin> <plugin>
<groupId>pl.project13.maven</groupId> <groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId> <artifactId>git-commit-id-plugin</artifactId>