Skip to content

Commit

Permalink
GH-777 Make javassist in panda-utilities provided, compile-in only fo…
Browse files Browse the repository at this point in the history
…r core module, release 0.5.3-alpha (#777)

* Make javassist in panda-utilities provided, compile-in only for core module, Release 0.5.3-alpha

* Add provided javaassist also to panda-framework
  • Loading branch information
P3ridot authored Mar 31, 2024
1 parent 80edc08 commit 2d31ba5
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ The latest indev build
<dependency>
<groupId>org.panda-lang</groupId>
<artifactId>panda</artifactId>
<version>0.5.2-alpha</version>
<version>0.5.3-alpha</version>
</dependency>
```

Expand Down
10 changes: 8 additions & 2 deletions panda-framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@
~ limitations under the License.
-->

<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>

<parent>
<artifactId>panda-parent</artifactId>
<groupId>org.panda-lang</groupId>
<version>0.5.2-alpha</version>
<version>0.5.3-alpha</version>
</parent>

<artifactId>panda-framework</artifactId>
Expand All @@ -30,6 +31,11 @@
<groupId>org.panda-lang</groupId>
<artifactId>panda-utilities</artifactId>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<scope>provided</scope>
</dependency>

<!-- Benchmarks -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public final class PandaFrameworkConstants {
/**
* Current version of the Panda Framework
*/
public static final String VERSION = "0.5.2-alpha";
public static final String VERSION = "0.5.3-alpha";

private PandaFrameworkConstants() { }

Expand Down
2 changes: 1 addition & 1 deletion panda-standalone/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<parent>
<artifactId>panda-parent</artifactId>
<groupId>org.panda-lang</groupId>
<version>0.5.2-alpha</version>
<version>0.5.3-alpha</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
3 changes: 2 additions & 1 deletion panda-utilities/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>panda-parent</artifactId>
<groupId>org.panda-lang</groupId>
<version>0.5.2-alpha</version>
<version>0.5.3-alpha</version>
</parent>

<artifactId>panda-utilities</artifactId>
Expand All @@ -33,6 +33,7 @@
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
Expand Down
9 changes: 7 additions & 2 deletions panda/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@
~ limitations under the License.
-->

<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>

<parent>
<artifactId>panda-parent</artifactId>
<groupId>org.panda-lang</groupId>
<version>0.5.2-alpha</version>
<version>0.5.3-alpha</version>
</parent>

<artifactId>panda</artifactId>
Expand All @@ -34,6 +35,10 @@
<groupId>net.dzikoysk</groupId>
<artifactId>cdn</artifactId>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
</dependency>

<!-- Benchmarks -->
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<name>Panda</name>
<groupId>org.panda-lang</groupId>
<artifactId>panda-parent</artifactId>
<version>0.5.2-alpha</version>
<version>0.5.3-alpha</version>
<packaging>pom</packaging>

<modules>
Expand Down

0 comments on commit 2d31ba5

Please sign in to comment.