Skip to content

Commit 30d2c53

Browse files
committed
v3 initial commit
1 parent 31e83c7 commit 30d2c53

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+510
-2267
lines changed

.idea/discord.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jarRepositories.xml

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/Maven__com_squareup_okhttp3_okhttp_3_8_1.xml renamed to .idea/libraries/Maven__com_squareup_okhttp3_okhttp_3_12_12.xml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/Maven__com_squareup_okhttp_okhttp_2_7_5.xml

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/Maven__com_squareup_okio_okio_1_13_0.xml renamed to .idea/libraries/Maven__com_squareup_okio_okio_1_6_0.xml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/Maven__io_socket_engine_io_client_1_0_0.xml renamed to .idea/libraries/Maven__io_socket_engine_io_client_1_0_1.xml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/Maven__io_socket_socket_io_client_1_0_0.xml renamed to .idea/libraries/Maven__io_socket_socket_io_client_1_0_1.xml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api.iml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@
99
</content>
1010
<orderEntry type="inheritedJdk" />
1111
<orderEntry type="sourceFolder" forTests="false" />
12-
<orderEntry type="library" name="Maven: io.socket:socket.io-client:1.0.0" level="project" />
13-
<orderEntry type="library" name="Maven: io.socket:engine.io-client:1.0.0" level="project" />
14-
<orderEntry type="library" name="Maven: com.squareup.okhttp3:okhttp:3.8.1" level="project" />
15-
<orderEntry type="library" name="Maven: com.squareup.okio:okio:1.13.0" level="project" />
12+
<orderEntry type="library" name="Maven: io.socket:socket.io-client:1.0.1" level="project" />
13+
<orderEntry type="library" name="Maven: io.socket:engine.io-client:1.0.1" level="project" />
14+
<orderEntry type="library" name="Maven: com.squareup.okhttp3:okhttp:3.12.12" level="project" />
1615
<orderEntry type="library" name="Maven: org.json:json:20090211" level="project" />
1716
<orderEntry type="library" name="Maven: com.google.code.gson:gson:2.8.6" level="project" />
1817
<orderEntry type="library" name="Maven: com.google.guava:guava-io:r03" level="project" />
1918
<orderEntry type="library" name="Maven: com.google.guava:guava-annotations:r03" level="project" />
2019
<orderEntry type="library" name="Maven: com.google.guava:guava-base:r03" level="project" />
20+
<orderEntry type="library" name="Maven: com.squareup.okhttp:okhttp:2.7.5" level="project" />
21+
<orderEntry type="library" name="Maven: com.squareup.okio:okio:1.6.0" level="project" />
2122
</component>
2223
</module>

dependency-reduced-pom.xml

Lines changed: 0 additions & 32 deletions
This file was deleted.

pom.xml

Lines changed: 8 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,6 @@
3434
<url>http://github.com/purecoreio/purecore-java/tree/master</url>
3535
</scm>
3636

37-
<distributionManagement>
38-
<snapshotRepository>
39-
<id>ossrh</id>
40-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
41-
</snapshotRepository>
42-
<repository>
43-
<id>ossrh</id>
44-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
45-
</repository>
46-
</distributionManagement>
47-
4837
<properties>
4938
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5039
</properties>
@@ -53,7 +42,7 @@
5342
<dependency>
5443
<groupId>io.socket</groupId>
5544
<artifactId>socket.io-client</artifactId>
56-
<version>1.0.0</version>
45+
<version>(,2.0)</version>
5746
</dependency>
5847
<dependency>
5948
<groupId>com.google.code.gson</groupId>
@@ -65,80 +54,22 @@
6554
<artifactId>guava-io</artifactId>
6655
<version>r03</version>
6756
</dependency>
57+
<dependency>
58+
<groupId>com.squareup.okhttp</groupId>
59+
<artifactId>okhttp</artifactId>
60+
<version>RELEASE</version>
61+
</dependency>
62+
6863
</dependencies>
6964

7065
<build>
7166
<sourceDirectory>src</sourceDirectory>
7267
<finalName>purecore-api</finalName>
7368
<plugins>
74-
<!--
75-
<plugin>
76-
<groupId>org.apache.maven.plugins</groupId>
77-
<artifactId>maven-shade-plugin</artifactId>
78-
<version>3.2.2</version>
79-
<executions>
80-
<execution>
81-
<phase>package</phase>
82-
<goals>
83-
<goal>shade</goal>
84-
</goals>
85-
</execution>
86-
</executions>
87-
</plugin>
88-
dependency shading managed by the plugin -->
89-
<plugin>
90-
<groupId>org.apache.maven.plugins</groupId>
91-
<artifactId>maven-source-plugin</artifactId>
92-
<executions>
93-
<execution>
94-
<id>attach-sources</id>
95-
<goals>
96-
<goal>jar-no-fork</goal>
97-
</goals>
98-
</execution>
99-
</executions>
100-
</plugin>
101-
<plugin>
102-
<groupId>org.apache.maven.plugins</groupId>
103-
<artifactId>maven-javadoc-plugin</artifactId>
104-
<configuration>
105-
<source>8</source>
106-
</configuration>
107-
<executions>
108-
<execution>
109-
<id>attach-javadocs</id>
110-
<goals>
111-
<goal>jar</goal>
112-
</goals>
113-
</execution>
114-
</executions>
115-
</plugin>
116-
<plugin>
117-
<groupId>org.apache.maven.plugins</groupId>
118-
<artifactId>maven-gpg-plugin</artifactId>
119-
<executions>
120-
<execution>
121-
<id>sign-artifacts</id>
122-
<phase>verify</phase>
123-
<goals>
124-
<goal>sign</goal>
125-
</goals>
126-
</execution>
127-
</executions>
128-
</plugin>
129-
<plugin>
130-
<groupId>org.sonatype.plugins</groupId>
131-
<artifactId>nexus-staging-maven-plugin</artifactId>
132-
<extensions>true</extensions>
133-
<configuration>
134-
<serverId>ossrh</serverId>
135-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
136-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
137-
</configuration>
138-
</plugin>
13969
<plugin>
14070
<groupId>org.apache.maven.plugins</groupId>
14171
<artifactId>maven-compiler-plugin</artifactId>
72+
<version>3.8.1</version>
14273
<configuration>
14374
<source>8</source>
14475
<target>8</target>

0 commit comments

Comments
 (0)