jbizmo-commons-richclient
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sourceforge.jbizmo</groupId> <artifactId>jbizmo-commons-richclient</artifactId> <version>10.0.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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>jbizmo-commons-richclient</artifactId> <parent> <groupId>net.sourceforge.jbizmo</groupId> <artifactId>jbizmo-master</artifactId> <version>10.0.0</version> <relativePath>../net.sourceforge.jbizmo</relativePath> </parent> <dependencies> <dependency> <groupId>net.sourceforge.jbizmo</groupId> <artifactId>jbizmo-commons</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>copy-generated-artifact</id> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <copy file="${project.build.directory}/${project.build.finalName}.jar" todir="../net.sourceforge.jbizmo.shared/lib"/> </target> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>