dbc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.uniknow.agiledev.tutorials</groupId> <artifactId>dbc</artifactId> <version>0.1.14</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.uniknow.agiledev</groupId> <artifactId>parent</artifactId> <version>0.1.14</version> <relativePath>../../parent/pom.xml</relativePath> </parent> <groupId>org.uniknow.agiledev.tutorials</groupId> <artifactId>dbc</artifactId> <name>Tutorial Design by Contract</name> <description> The following tutorial describes how we can apply Design by Contract within a Java project </description> <dependencies> <!-- Dependencies to implement Design by Contract --> <dependency> <groupId>org.uniknow.agiledev</groupId> <artifactId>dbc4java</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjrt</artifactId> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> </dependency> </dependencies> <build> <plugins> <!-- AspectJ compile time weaving. Required for Design by Contract --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>aspectj-maven-plugin</artifactId> <executions> <execution> <goals> <goal>compile</goal> </goals> </execution> </executions> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <showWeaveInfo>true</showWeaveInfo> <complianceLevel>${maven.compiler.target}</complianceLevel> <encoding>${project.build.sourceEncoding}</encoding> <weaveDependencies> <weaveDependency> <groupId>org.uniknow.agiledev</groupId> <artifactId>dbc4java</artifactId> </weaveDependency> </weaveDependencies> </configuration> </plugin> </plugins> </build> </project>