forked from p8iqkyhxf/MedShare-MicroService
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
3.5 KiB
97 lines
3.5 KiB
2 years ago
|
<?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>
|
||
|
<parent>
|
||
|
<artifactId>MicroMedShare</artifactId>
|
||
|
<groupId>net.mydreamy</groupId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<groupId>net.mydreamy</groupId>
|
||
|
<artifactId>MicroMedShare-ear</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<packaging>ear</packaging>
|
||
|
|
||
|
<name>MicroMedShare-ear</name>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.glassfish.maven.plugin</groupId>
|
||
|
<artifactId>maven-glassfish-plugin</artifactId>
|
||
|
<version>2.1</version>
|
||
|
<configuration>
|
||
|
<glassfishDirectory>F:\javaprojects\glassfish-5.0\glassfish5\glassfish</glassfishDirectory>
|
||
|
<user>admin</user>
|
||
|
<passwordFile>”F:\javaprojects\glassfish-5.0\glassfish5\glassfish\domains\autodomain\config\domain-passwords”</passwordFile>
|
||
|
<domain>
|
||
|
<name>autodomain</name>
|
||
|
<httpPort>8080</httpPort>
|
||
|
<adminPort>4848</adminPort>
|
||
|
</domain>
|
||
|
<components>
|
||
|
<component>
|
||
|
<name>${project.artifactId}</name>
|
||
|
<artifact>target/${project.build.finalName}.war</artifact>
|
||
|
</component>
|
||
|
</components>
|
||
|
<debug>true</debug>
|
||
|
<terse>false</terse>
|
||
|
<echo>true</echo>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.1</version>
|
||
|
<configuration>
|
||
|
<source>1.7</source>
|
||
|
<target>1.7</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-ear-plugin</artifactId>
|
||
|
<version>2.8</version>
|
||
|
<configuration>
|
||
|
<version>6</version>
|
||
|
<defaultLibBundleDir>lib</defaultLibBundleDir>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>net.mydreamy</groupId>
|
||
|
<artifactId>MicroMedShare-med</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<type>ejb</type>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>net.mydreamy</groupId>
|
||
|
<artifactId>MicroMedShare-ehr</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<type>ejb</type>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>net.mydreamy</groupId>
|
||
|
<artifactId>MicroMedShare-web</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<type>war</type>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>net.mydreamy</groupId>
|
||
|
<artifactId>MicroMedShare-auth</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<type>ejb</type>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
</project>
|