oxalis-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>network.oxalis</groupId> <artifactId>oxalis-server</artifactId> <version>7.2.0-RC1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2010-2018 Norwegian Agency for Public Management and eGovernment (Difi) ~ ~ Licensed under the EUPL, Version 1.1 or – as soon they ~ will be approved by the European Commission - subsequent ~ versions of the EUPL (the "Licence"); ~ ~ You may not use this work except in compliance with the Licence. ~ ~ You may obtain a copy of the Licence at: ~ ~ https://joinup.ec.europa.eu/community/eupl/og_page/eupl ~ ~ Unless required by applicable law or agreed to in ~ writing, software distributed under the Licence is ~ distributed on an "AS IS" basis, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either ~ express or implied. ~ See the Licence for the specific language governing ~ permissions and limitations under the Licence. --> <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"> <parent> <artifactId>oxalis</artifactId> <groupId>network.oxalis</groupId> <version>7.2.0-RC1</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>oxalis-server</artifactId> <name>Oxalis :: Dist :: Server</name> <description>Oxalis Server with standard Oxalis features only.</description> <url>https://github.com/OxalisCommunity/oxalis</url> <issueManagement> <url>https://github.com/OxalisCommunity/oxalis/issues</url> <system>GitHub Issues</system> </issueManagement> <organization> <name>NorStella</name> <url>https://en.norstella.no/</url> </organization> <dependencies> <!-- Oxalis --> <dependency> <groupId>network.oxalis</groupId> <artifactId>oxalis-inbound</artifactId> </dependency> <dependency> <groupId>network.oxalis</groupId> <artifactId>oxalis-outbound</artifactId> </dependency> <dependency> <groupId>network.oxalis</groupId> <artifactId>oxalis-as2</artifactId> </dependency> <dependency> <groupId>network.oxalis</groupId> <artifactId>oxalis-extension-testbed</artifactId> </dependency> <!-- Jetty --> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> </dependency> </dependencies> <profiles> <profile> <id>dist</id> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/main/assembly/assembly-full.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>create-distribution-package</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-resources</id> <phase>package</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>../../target</outputDirectory> <resources> <resource> <directory>${project.build.directory}/${project.build.finalName}-full</directory> <filtering>false</filtering> <!-- <includeEmptyDirs>true</includeEmptyDirs> --> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>