Skip to content

Commit

Permalink
Add project module with graph parser and model.
Browse files Browse the repository at this point in the history
  • Loading branch information
neilcsmith-net committed Jun 5, 2024
1 parent b76cd53 commit 7fbae9d
Show file tree
Hide file tree
Showing 12 changed files with 2,967 additions and 0 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
<module>praxiscore-hub</module>
<module>praxiscore-script</module>
<module>praxiscore-launcher</module>
<module>praxiscore-project</module>
<module>praxiscore-data</module>
<module>praxiscore-video</module>
<module>praxiscore-video-code</module>
Expand Down
58 changes: 58 additions & 0 deletions praxiscore-project/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>
<groupId>org.praxislive</groupId>
<artifactId>praxiscore</artifactId>
<version>6.0.0-SNAPSHOT</version>
</parent>
<artifactId>praxiscore-project</artifactId>
<packaging>jar</packaging>
<name>PraxisCORE Project</name>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>praxiscore-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>praxiscore-base</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>praxiscore-script</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgs>
<!--<arg>-Xlint:all</arg>-->
</compilerArgs>
</configuration>
</plugin>
</plugins>
</build>

</project>
11 changes: 11 additions & 0 deletions praxiscore-project/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

module org.praxislive.project {

requires transitive org.praxislive.core;

requires org.praxislive.base;
requires org.praxislive.script;

exports org.praxislive.project;

}
Loading

0 comments on commit 7fbae9d

Please sign in to comment.