-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
44584ef
commit 0adf74d
Showing
22 changed files
with
52 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,9 @@ | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>com.bladejava</groupId> | ||
<groupId>com.hellokaton</groupId> | ||
<artifactId>blade-asm</artifactId> | ||
<version>0.0.4</version> | ||
<version>0.1.0</version> | ||
|
||
<name>blade-asm</name> | ||
<url>https://lets-blade.com</url> | ||
|
@@ -20,14 +20,14 @@ | |
</licenses> | ||
<developers> | ||
<developer> | ||
<name>biezhi</name> | ||
<email>biezhi.me@gmail.com</email> | ||
<name>hellokaton</name> | ||
<email>hellokaton@gmail.com</email> | ||
</developer> | ||
</developers> | ||
<scm> | ||
<connection>scm:[email protected]:biezhi/blade.git</connection> | ||
<developerConnection>scm:[email protected]:biezhi/blade.git</developerConnection> | ||
<url>[email protected]:biezhi/blade.git</url> | ||
<connection>scm:[email protected]:lets-blade/blade-asm.git</connection> | ||
<developerConnection>scm:[email protected]:lets-blade/blade-asm.git</developerConnection> | ||
<url>[email protected]:lets-blade/blade-asm.git</url> | ||
</scm> | ||
|
||
<properties> | ||
|
@@ -40,7 +40,7 @@ | |
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.12</version> | ||
<version>4.13.2</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
@@ -71,6 +71,15 @@ | |
<encoding>UTF-8</encoding> | ||
</configuration> | ||
</plugin> | ||
<!-- Test --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.17</version> | ||
<configuration> | ||
<skipTests>true</skipTests> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
|
@@ -79,15 +88,15 @@ | |
<id>release</id> | ||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>oss</id> | ||
<id>ossrh</id> | ||
<url> | ||
https://oss.sonatype.org/content/repositories/snapshots/ | ||
https://s01.oss.sonatype.org/content/repositories/snapshots/ | ||
</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>oss</id> | ||
<id>ossrh</id> | ||
<url> | ||
https://oss.sonatype.org/service/local/staging/deploy/maven2/ | ||
https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ | ||
</url> | ||
</repository> | ||
</distributionManagement> | ||
|
@@ -146,65 +155,6 @@ | |
</plugins> | ||
</build> | ||
</profile> | ||
<profile> | ||
<id>snapshots</id> | ||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>oss</id> | ||
<url> | ||
https://oss.sonatype.org/content/repositories/snapshots/ | ||
</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>oss</id> | ||
<url> | ||
https://oss.sonatype.org/service/local/staging/deploy/maven2/ | ||
</url> | ||
</repository> | ||
</distributionManagement> | ||
<build> | ||
<plugins> | ||
<!-- Source --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>2.4</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>jar-no-fork</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<!--skip test--> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.17</version> | ||
<configuration> | ||
<skipTests>true</skipTests> | ||
</configuration> | ||
</plugin> | ||
<!-- Gpg Signature --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>1.6</version> | ||
<executions> | ||
<execution> | ||
<id>sign-artifacts</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>sign</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
|
||
|
||
|
4 changes: 2 additions & 2 deletions
4
...n/java/com/blade/reflectasm/ASMUtils.java → ...va/com/hellokaton/blade/asm/ASMUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...m/blade/reflectasm/AccessClassLoader.java → ...llokaton/blade/asm/AccessClassLoader.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../reflectasm/method/EmptyClassVisitor.java → ...n/blade/asm/method/EmptyClassVisitor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...reflectasm/method/EmptyMethodVisitor.java → .../blade/asm/method/EmptyMethodVisitor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...de/reflectasm/method/MethodParameter.java → ...ton/blade/asm/method/MethodParameter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.blade.reflectasm.method; | ||
package com.hellokaton.blade.asm.method; | ||
|
||
public class MethodParameter { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...lade/reflectasm/method/MethodVisitor.java → ...katon/blade/asm/method/MethodVisitor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.blade.reflectasm.method; | ||
package com.hellokaton.blade.asm.method; | ||
|
||
import org.objectweb.asm.Type; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ade/reflectasm/method/ParamExtractor.java → ...aton/blade/asm/method/ParamExtractor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.blade.reflectasm.method; | ||
package com.hellokaton.blade.asm.method; | ||
|
||
import org.objectweb.asm.Label; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../com/blade/reflectasm/SameMethodTest.java → .../hellokaton/blade/asm/SameMethodTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package com.blade.reflectasm; | ||
package com.hellokaton.blade.asm; | ||
|
||
import junit.framework.TestCase; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters