Skip to content

Commit

Permalink
docs(pom): add executions comment
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Sep 24, 2024
1 parent 3f4ee84 commit 0193aef
Showing 1 changed file with 8 additions and 25 deletions.
33 changes: 8 additions & 25 deletions server-jetty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,10 @@
<version>3.3.0</version>
<executions>
<execution>
<!-- exec:java@test -->
<!--
exec:java@test
mvn -pl server-jetty exec:java@test -Djava.util.logging.config.file=server-jetty/logging.properties
-->
<id>test</id>
<goals><goal>java</goal></goals>
<configuration>
Expand All @@ -124,7 +127,10 @@
</configuration>
</execution>
<execution>
<!-- exec:java@agentexecutor -->
<!--
exec:java@agentexecutor
mvn -pl server-jetty exec:java@agentexecutor -Djava.util.logging.config.file=server-jetty/logging.properties
-->
<id>agentexecutor</id>
<goals><goal>java</goal></goals>
<configuration>
Expand All @@ -138,36 +144,13 @@
mvn -pl server-jetty exec:java@test -Djava.util.logging.config.file=server-jetty/logging.properties
-->
<id>adaptiverag</id>
<goals><goal>exec</goal></goals>
<configuration>
<executable>java</executable>
<arguments>
<argument>-Djava.util.logging.config.file=${project.basedir}/logging.properties</argument>
<argument>-classpath</argument>
<classpath/>
<argument>org.bsc.langgraph4j.AdaptiveRAGStreamingServer</argument>
</arguments>
<classpathScope>test</classpathScope>
</configuration>
</execution>
<execution>
<!-- exec:exec@adaptiverag1 -->
<id>adaptiverag1</id>
<goals><goal>java</goal></goals>
<configuration>
<classpathScope>test</classpathScope>
<mainClass>org.bsc.langgraph4j.AdaptiveRAGStreamingServer</mainClass>
</configuration>
</execution>
</executions>
<configuration>
<systemProperties>
<systemProperty>
<key>java.util.logging.config.file</key>
<value>/Users/bsorrentino/WORKSPACES/GITHUB.me/JAVA/langgraph4j/server-jetty/logging.properties</value>
</systemProperty>
</systemProperties>
</configuration>
<dependencies>
<dependency>
<groupId>org.bsc.langgraph4j</groupId>
Expand Down

0 comments on commit 0193aef

Please sign in to comment.