wicketstuff-input-events
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wicketstuff</groupId> <artifactId>wicketstuff-input-events</artifactId> <version>10.4.0</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.wicketstuff</groupId> <artifactId>input-events-parent</artifactId> <version>10.4.0</version> </parent> <artifactId>wicketstuff-input-events</artifactId> <packaging>bundle</packaging> <name>Input Events</name> <description> All sorts of Input events, key presses etc </description> <developers> <developer> <name>Nino Martinez</name> <id>nmwael</id> <email>nino.martinez.wael@gmail.com</email> </developer> </developers> <dependencies> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> </dependency> <dependency> <groupId>org.apache.wicket</groupId> <artifactId>wicket-tester</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*DoNotRunAnyTests.java</include> </includes> <!-- jthomerson: I changed the line above so that no tests would run. This was to get TeamCity running where it would still fail if other projects had a test failure - we don't want all test failures to be ignored - but apparently this project does, so we're just turning off testing in it for now. --> <testFailureIgnore>true</testFailureIgnore> </configuration> </plugin> </plugins> </build> </project>