Skip to content

Commit

Permalink
Merge pull request #3 from pizihao/dev-1
Browse files Browse the repository at this point in the history
2.0.0
  • Loading branch information
pizihao authored Feb 7, 2023
2 parents 906e2ca + 6f4d4e3 commit d84e34d
Show file tree
Hide file tree
Showing 87 changed files with 1,339 additions and 1,414 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@
</dependency>
~~~

jackson版本:2.13.3

asm版本:5.2

### 串行化

通过本项目进行串行化的任务执行有两种方式:
Expand Down
58 changes: 19 additions & 39 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,14 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.pizihao</groupId>
<artifactId>crow</artifactId>
<version>0.0.9.3</version>
<version>2.0.0</version>
<name>crow</name>
<description>A black crow</description>
<url>https://github.com/pizihao/crow</url>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.esotericsoftware</groupId>
<artifactId>reflectasm</artifactId>
<version>1.11.9</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-all</artifactId>
<version>5.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down Expand Up @@ -71,17 +55,26 @@

<build>
<plugins>
<!-- 编译插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<annotationProcessorPaths>
<path>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>1.0-rc7</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand All @@ -106,28 +99,15 @@
<argLine>-Xmx1024m</argLine>
</configuration>
</plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>1.20.0</version>
<configuration>
<java>
<includes>
<include>src/**/java/**/*.java</include>
</includes>
<googleJavaFormat>
<version>1.7</version>
<style>GOOGLE</style>
</googleJavaFormat>
</java>
</configuration>
</plugin>
</plugins>
</build>


<profiles>
<profile>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<id>release</id>
<build>
<!-- <pluginManagement>-->
Expand Down Expand Up @@ -185,11 +165,11 @@
<repository>
<id>oss</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url>
<uniqueVersion>false</uniqueVersion>
</repository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

</profile>
</profiles>

</project>
168 changes: 0 additions & 168 deletions src/main/java/com/deep/crow/completable/Cof.java

This file was deleted.

Loading

0 comments on commit d84e34d

Please sign in to comment.