Skip to content

Commit 408cff8

Browse files
authored
Merge pull request #1 from quintoandar/refactor-encoder
Refactor encoder
2 parents a6bf4c3 + f8fcc97 commit 408cff8

File tree

12 files changed

+205
-50
lines changed

12 files changed

+205
-50
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
.idea
22
urlencoder.iml
3-
target/
3+
target/
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
49dc3de2b678cf3e64ee924ceb25459b
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
d27783f047fb2f74e373c513a4ef22922a58366d
Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>br.com.quintoandar</groupId>
8+
<artifactId>urlencoder</artifactId>
9+
<version>1.0.0</version>
10+
11+
<dependencies>
12+
<dependency>
13+
<groupId>javax.ws.rs</groupId>
14+
<artifactId>javax.ws.rs-api</artifactId>
15+
<version>${rs-api.version}</version>
16+
</dependency>
17+
<dependency>
18+
<groupId>org.apache.commons</groupId>
19+
<artifactId>commons-lang3</artifactId>
20+
<version>${commons-lang3.version}</version>
21+
</dependency>
22+
<dependency>
23+
<groupId>org.apache.httpcomponents</groupId>
24+
<artifactId>httpclient</artifactId>
25+
<version>${httpclient.version}</version>
26+
</dependency>
27+
<dependency>
28+
<groupId>org.jboss.resteasy</groupId>
29+
<artifactId>resteasy-jaxrs</artifactId>
30+
<version>${resteasy-jaxrs.version}</version>
31+
</dependency>
32+
<dependency>
33+
<groupId>org.jboss.resteasy</groupId>
34+
<artifactId>resteasy-client</artifactId>
35+
<version>${resteasy-client.version}</version>
36+
</dependency>
37+
<dependency>
38+
<groupId>org.projectlombok</groupId>
39+
<artifactId>lombok</artifactId>
40+
<version>${lombok.version}</version>
41+
</dependency>
42+
</dependencies>
43+
44+
<build>
45+
<plugins>
46+
<plugin>
47+
<artifactId>maven-deploy-plugin</artifactId>
48+
<version>2.8.1</version>
49+
<configuration>
50+
<altDeploymentRepository>internal.repo::default::file://${internal.repo.path}</altDeploymentRepository>
51+
</configuration>
52+
</plugin>
53+
</plugins>
54+
</build>
55+
56+
<properties>
57+
<rs-api.version>2.1</rs-api.version>
58+
<commons-lang3.version>3.7</commons-lang3.version>
59+
<httpclient.version>4.5.5</httpclient.version>
60+
<resteasy-jaxrs.version>3.1.4.Final</resteasy-jaxrs.version>
61+
<resteasy-client.version>3.1.4.Final</resteasy-client.version>
62+
<lombok.version>1.16.20</lombok.version>
63+
<maven.compiler.source>1.8</maven.compiler.source>
64+
<maven.compiler.target>1.8</maven.compiler.target>
65+
<internal.repo.path>${basedir}/mvn-repo/</internal.repo.path>
66+
</properties>
67+
68+
<!--<scm>-->
69+
<!--<url>https://github.com/quintoandar/urlencoder</url>-->
70+
<!--<connection>scm:git:git@github.com:quintoandar/urlencoder.git</connection>-->
71+
<!--<developerConnection>scm:git:git@github.com:quintoandar/urlencoder.git</developerConnection>-->
72+
<!--</scm>-->
73+
74+
</project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
8fec72026ee735be963ed7226cd5f567
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
d1c966308a42fd711c44bd0d46fb03a24512068f
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<metadata>
3+
<groupId>br.com.quintoandar</groupId>
4+
<artifactId>urlencoder</artifactId>
5+
<versioning>
6+
<release>1.0.0</release>
7+
<versions>
8+
<version>1.0.0</version>
9+
</versions>
10+
<lastUpdated>20180226134832</lastUpdated>
11+
</versioning>
12+
</metadata>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
78cdde2bb8a5dfdaa7408bc585f72c06
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
c7e4b8690379b4e32e0a4762c649332fddb081d2

0 commit comments

Comments
 (0)