parachute
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.devzendo</groupId> <artifactId>parachute</artifactId> <version>0.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <groupId>org.devzendo</groupId> <artifactId>parachute</artifactId> <version>0.0.1</version> <packaging>pom</packaging> <name>Parachute Parallel Programming System</name> <description>This is an emulator of the 32-bit Inmos T414/T800/T801/T805 Transputer family, a Node Server that interfaces it to a host OS, providing boot/debug/IO facilities. Also several example programs. A macro assembler that understands a subset of MASM 6 directives, for building for the Transputer. A port of eForth to the above emulator. (Apache License v2) 2005-2019 Matt Gumbley, DevZendo.org </description> <url>https://devzendo.github.io/parachute</url> <organization> <name>DevZendo.org</name> <url>http://devzendo.org/</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://bitbucket.org/devzendo/parachute/</url> <connection>scm:hg:https://bitbucket.org/devzendo/parachute/</connection> <developerConnection>scm:hg:https://bitbucket.org/devzendo/parachute/</developerConnection> </scm> <developers> <developer> <id>matt.gumbley</id> <name>Matt Gumbley</name> <email>matt.gumbley@devzendo.org</email> </developer> </developers> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <transputer.emulator.version>0.0.1</transputer.emulator.version> <transputer.macro.assembler.version>0.0.1</transputer.macro.assembler.version> </properties> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>centos7</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/assembly/centos-7-distribution.xml</descriptor> </descriptors> </configuration> </execution> <execution> <id>macosx</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/assembly/macosx-distribution.xml</descriptor> </descriptors> </configuration> </execution> <execution> <id>raspbian</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/assembly/raspbian-9-distribution.xml</descriptor> </descriptors> </configuration> </execution> <execution> <id>ubuntu-16.04</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/assembly/ubuntu-16.04-distribution.xml</descriptor> </descriptors> </configuration> </execution> <execution> <id>ubuntu-18.04</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/assembly/ubuntu-18.04-distribution.xml</descriptor> </descriptors> </configuration> </execution> <execution> <id>windows</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/assembly/windows-distribution.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <executable>gpg2</executable> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>sonatype-nexus-staging</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> </configuration> </plugin> </plugins> </build> <dependencies> <!-- Produced by a single (main) module, with profiles per-OS, running on multiple Jenkins nodes. The build runs in two phases, controlled by profiles. 'build' produces these artifacts, which are archived via Jenkins and copied to the master build. 'deploy' deploys all of them en masse to Nexus OSSRH, from where this build collects them. See the assembly plugin descriptors above... --> <dependency> <groupId>org.devzendo</groupId> <artifactId>transputer-emulator</artifactId> <version>${transputer.emulator.version}</version> <classifier>mac-x86_64</classifier> <type>tar.gz</type> </dependency> <dependency> <groupId>org.devzendo</groupId> <artifactId>transputer-emulator</artifactId> <version>${transputer.emulator.version}</version> <classifier>centos-7-linux-x86_64</classifier> <type>tar.gz</type> </dependency> <dependency> <groupId>org.devzendo</groupId> <artifactId>transputer-emulator</artifactId> <version>${transputer.emulator.version}</version> <classifier>ubuntu-16.04-linux-x86_64</classifier> <type>tar.gz</type> </dependency> <dependency> <groupId>org.devzendo</groupId> <artifactId>transputer-emulator</artifactId> <version>${transputer.emulator.version}</version> <classifier>ubuntu-18.04-linux-x86_64</classifier> <type>tar.gz</type> </dependency> <dependency> <groupId>org.devzendo</groupId> <artifactId>transputer-emulator</artifactId> <version>${transputer.emulator.version}</version> <classifier>raspbian-9-linux-arm_32</classifier> <type>tar.gz</type> </dependency> <dependency> <groupId>org.devzendo</groupId> <artifactId>transputer-emulator</artifactId> <version>${transputer.emulator.version}</version> <classifier>windows-x86_64</classifier> <type>zip</type> </dependency> <!-- Produced by multiple modules with their own packaging; the linux module works on all our Linuxes --> <dependency> <groupId>org.devzendo</groupId> <artifactId>tma-linux</artifactId> <version>${transputer.macro.assembler.version}</version> <classifier>linux</classifier> <type>tar.gz</type> </dependency> <dependency> <groupId>org.devzendo</groupId> <artifactId>tma-osx</artifactId> <version>${transputer.macro.assembler.version}</version> <classifier>mac</classifier> <type>tar.gz</type> </dependency> <dependency> <groupId>org.devzendo</groupId> <artifactId>tma-windows</artifactId> <version>${transputer.macro.assembler.version}</version> <classifier>windows</classifier> <type>zip</type> </dependency> </dependencies> </project>