webswing-assembly
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.webswing</groupId> <artifactId>webswing-assembly</artifactId> <version>20.2.4</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> <artifactId>webswing</artifactId> <groupId>org.webswing</groupId> <version>20.2.4</version> <relativePath>..</relativePath> </parent> <artifactId>webswing-assembly</artifactId> <packaging>pom</packaging> <dependencies> <dependency> <groupId>org.webswing</groupId> <artifactId>webswing-server-war</artifactId> <version>${project.version}</version> <type>war</type> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <configuration> <gitDescribe> <skip>true</skip> </gitDescribe> <skipPoms>false</skipPoms> <format>json</format> <generateGitPropertiesFilename>${project.basedir}/dist/git.info</generateGitPropertiesFilename> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-resources</id> <phase>package</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/dist</outputDirectory> <resources> <resource> <directory>${basedir}/src/main/resources</directory> <includes> <include>version.info</include> </includes> <filtering>true</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> <configuration> <finalName>webswing-${project.version}</finalName> <outputDirectory>dist</outputDirectory> <descriptors> <descriptor>src/main/assembly/dist.xml</descriptor> </descriptors> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>docker</id> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <finalName>webswing</finalName> <outputDirectory>dist/docker</outputDirectory> <descriptors> <descriptor>src/main/assembly/dist.xml</descriptor> </descriptors> </configuration> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>package-server-lib</id> <phase>package</phase> <configuration> <target> <copy todir="${project.basedir}/dist/docker"> <fileset dir="${project.basedir}/src/main/docker"> <include name="Dockerfile" /> </fileset> </copy> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> <version>0.4.0</version> <configuration> <imageName>meszarv/webswing</imageName> <dockerDirectory>${project.basedir}/dist/docker</dockerDirectory> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>build</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>