Skip to content

Commit

Permalink
Version 1.1-stable release
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisIsLibra committed May 11, 2021
1 parent df4233a commit 1627e1e
Show file tree
Hide file tree
Showing 12 changed files with 680 additions and 28 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# MalShareApi
A Java API client for MalShare. The code is extensively documented. For more information, see [this](https://maxkersten.nl/2020/08/06/malshare-api-client-in-java/) post on my website.

Questions can be asked on [Twitter](https://twitter.com/LibraAnalysis) or in issues on this repository.
Questions can be asked on [Twitter](https://twitter.com/Libranalysis) or in issues on this repository.
34 changes: 33 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>malshareapi</groupId>
<artifactId>MalShareApi</artifactId>
<version>1.0-stable</version>
<version>1.1-stable</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -20,6 +20,32 @@
</descriptorRefs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<version>3.2.1</version>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<version>3.2.0</version>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<pluginRepositories>
Expand Down Expand Up @@ -60,5 +86,11 @@
<artifactId>httpmime</artifactId>
<version>4.5.12</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20200518</version>
</dependency>
</dependencies>
</project>
Loading

0 comments on commit 1627e1e

Please sign in to comment.