vec113-assertions
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.foursoft.harness.vec</groupId>
<artifactId>vec113-assertions</artifactId>
<version>2.0.1</version>
</dependency><project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>com.foursoft.harness.vec</groupId>
<artifactId>vec-parent</artifactId>
<version>2.0.1</version>
</parent>
<artifactId>vec113-assertions</artifactId>
<description>The Assertions Library for VEC version 1.2.0.</description>
<dependencies>
<!--project -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>vec-v113</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
</dependencies>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.assertj</groupId>
<artifactId>assertj-assertions-generator-maven-plugin</artifactId>
<executions>
<execution>
<?m2e execute onConfiguration?>
<phase>generate-sources</phase>
<goals>
<goal>generate-assertions</goal>
</goals>
</execution>
</executions>
<configuration>
<entryPointClassPackage>com.foursoft.harness.vec.v113.assertions</entryPointClassPackage>
<packages>
<param>com.foursoft.harness.vec.v113</param>
</packages>
<excludes>
<exclude>com\.foursoft\.harness\.vec\.v113\.visitor.*</exclude>
<exclude>com\.foursoft\.harness\.vec\.v113\.delegate.*</exclude>
<exclude>com\.foursoft\.harness\.vec\.v113\.common.*</exclude>
<exclude>com\.foursoft\.harness\.vec\.v113\.ObjectFactory</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>