Skip to content

Commit

Permalink
excluded combined from deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
lausdahl committed Feb 8, 2024
1 parent 65ecb10 commit 767b4b8
Showing 1 changed file with 57 additions and 49 deletions.
106 changes: 57 additions & 49 deletions combined/pom.xml
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.into-cps</groupId>
<artifactId>vdmcheck</artifactId>
<version>${revision}${sha1}${changelist}</version>
<relativePath>../pom.xml</relativePath>
</parent>
<parent>
<groupId>org.into-cps</groupId>
<artifactId>vdmcheck</artifactId>
<version>${revision}${sha1}${changelist}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<groupId>org.into-cps.vdmcheck</groupId>
<artifactId>combined</artifactId>
<packaging>jar</packaging>
<groupId>org.into-cps.vdmcheck</groupId>
<artifactId>combined</artifactId>
<packaging>jar</packaging>

<name>Combined FMI2/FMI3 Testing</name>
<description>A combined FMI2/FMI3 test for MaestroChecks</description>
<name>Combined FMI2/FMI3 Testing</name>
<description>A combined FMI2/FMI3 test for MaestroChecks</description>

<properties>
<vdmj.version>4.5.0-P-SNAPSHOT</vdmj.version>
</properties>

<dependencies>
<dependency>
<groupId>org.into-cps.vdmcheck.fmi2</groupId>
<artifactId>vdmcheck2</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependencies>
<dependency>
<groupId>org.into-cps.vdmcheck.fmi2</groupId>
<artifactId>vdmcheck2</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.into-cps.vdmcheck.fmi2</groupId>
<artifactId>rule-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.into-cps.vdmcheck.fmi3</groupId>
<artifactId>vdmcheck3</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.into-cps.vdmcheck.fmi3</groupId>
<artifactId>vdmcheck3</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.into-cps.vdmcheck.fmi3</groupId>
<artifactId>rule-model</artifactId>
Expand All @@ -53,28 +53,36 @@
<artifactId>annotations</artifactId>
<version>${vdmj.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>

<build>
<plugins>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<configuration>
<skip>true</skip> <!-- Skipped because there is no jar, only tests -->
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<skipIfEmpty>true</skipIfEmpty>
</configuration>
</plugin>
</plugins>
</build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<configuration>
<skip>true</skip> <!-- Skipped because there is no jar, only tests -->
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<skipIfEmpty>true</skipIfEmpty>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 767b4b8

Please sign in to comment.