Skip to content

Commit

Permalink
First (failed) attempt at producing state machine graphs
Browse files Browse the repository at this point in the history
  • Loading branch information
greenc-FNAL committed Nov 27, 2024
1 parent 9023cea commit b110000
Showing 1 changed file with 40 additions and 3 deletions.
43 changes: 40 additions & 3 deletions modules/dcache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -398,16 +398,16 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>smc-maven-plugin</artifactId>
<version>1.0-alpha-1</version>
<configuration>
<verbose>true</verbose>
</configuration>
<executions>
<execution>
<goals>
<goal>smc</goal>
</goals>
</execution>
</executions>
<configuration>
<verbose>true</verbose>
</configuration>
<dependencies>
<dependency>
<groupId>net.sf.smc</groupId>
Expand Down Expand Up @@ -521,4 +521,41 @@
</plugins>
</pluginManagement>
</build>

<profiles>
<profile>
<id>smc-dot</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>smc-maven-plugin</artifactId>
<version>1.0-alpha-1</version>
<configuration>
<targetLanguage>graph</targetLanguage>
<glevel>2</glevel>
<verbose>true</verbose>
</configuration>
<executions>
<execution>
<id>smc-dot</id>
<goals>
<goal>smc</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>net.sf.smc</groupId>
<artifactId>smc</artifactId>
<version>${version.smc}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit b110000

Please sign in to comment.