wicketstuff-console-engine
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.wicketstuff</groupId>
<artifactId>wicketstuff-console-engine</artifactId>
<version>1.5.13</version>
</dependency><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.wicketstuff</groupId> <artifactId>console-parent</artifactId> <version>1.5.13</version> </parent> <artifactId>wicketstuff-console-engine</artifactId> <packaging>jar</packaging> <name>Wicket Console - Engine</name> <description> This is the 'backend' of Wicket Console which actually executes scripts. </description> <build> <resources> <resource> <filtering>false</filtering> <directory>src/main/scala</directory> <includes> <include>**</include> </includes> <excludes> <exclude>**/*.scala</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>org.scala-tools</groupId> <artifactId>maven-scala-plugin</artifactId> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.clojure</groupId> <artifactId>clojure</artifactId> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy</artifactId> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-compiler</artifactId> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> </dependency> <dependency> <groupId>org.python</groupId> <artifactId>jython-standalone</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> </dependencies> </project>