Not a member of Pastebin yet?
                        Sign Up,
                        it unlocks many cool features!                    
                - <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/maven-v4_0_0.xsd">
 - <modelVersion>4.0.0</modelVersion>
 - <parent>
 - <groupId>org.openmrs.module</groupId>
 - <artifactId>JSSLab</artifactId>
 - <version>1.0-SNAPSHOT</version>
 - </parent>
 - <groupId>org.openmrs.module</groupId>
 - <artifactId>JSSLab-omod</artifactId>
 - <packaging>omod</packaging>
 - <name>JSSLab Module OMOD</name>
 - <description>Omod project for JSSLab</description>
 - <dependencies>
 - <dependency>
 - <groupId>org.openmrs.module</groupId>
 - <artifactId>jsslab-api</artifactId>
 - <version>1.0-SNAPSHOT</version>
 - </dependency>
 - <dependency>
 - <groupId>org.openmrs.api</groupId>
 - <artifactId>openmrs-api</artifactId>
 - <type>jar</type>
 - </dependency>
 - <dependency>
 - <groupId>org.openmrs.web</groupId>
 - <artifactId>openmrs-web</artifactId>
 - <type>jar</type>
 - </dependency>
 - <dependency>
 - <groupId>org.openmrs.api</groupId>
 - <artifactId>openmrs-api</artifactId>
 - <version>${openMRSVersion}</version><!--$NO-MVN-MAN-VER$-->
 - <type>test-jar</type>
 - <scope>test</scope>
 - </dependency>
 - <dependency>
 - <groupId>org.openmrs.web</groupId>
 - <artifactId>openmrs-web</artifactId>
 - <version>${openMRSVersion}</version><!--$NO-MVN-MAN-VER$-->
 - <type>test-jar</type>
 - <scope>test</scope>
 - </dependency>
 - <dependency>
 - <groupId>org.openmrs.test</groupId>
 - <artifactId>openmrs-test</artifactId>
 - <version>${openMRSVersion}</version>
 - <type>pom</type>
 - <scope>test</scope>
 - </dependency>
 - <dependency>
 - <groupId>org.openmrs.module</groupId>
 - <artifactId>webservices.rest-api</artifactId>
 - <version>0.9-SNAPSHOT</version>
 - </dependency>
 - <dependency>
 - <groupId>org.openmrs.module</groupId>
 - <artifactId>webservices.rest</artifactId>
 - <version>0.9-SNAPSHOT</version>
 - </dependency>
 - </dependencies>
 - <build>
 - <resources>
 - <resource>
 - <directory>src/main/resources</directory>
 - <filtering>true</filtering>
 - </resource>
 - <resource>
 - <directory>src/main/webapp</directory>
 - <filtering>true</filtering>
 - <excludes>
 - <exclude>resources</exclude>
 - </excludes>
 - <targetPath>web/module</targetPath>
 - </resource>
 - <resource>
 - <directory>src/main/webapp</directory>
 - <filtering>false</filtering>
 - <includes>
 - <include>resources</include>
 - </includes>
 - <targetPath>web/module</targetPath>
 - </resource>
 - </resources>
 - <testResources>
 - <testResource>
 - <directory>src/test/resources</directory>
 - <filtering>true</filtering>
 - <includes>
 - <include>**/*.xml</include>
 - <include>**/*.txt</include>
 - </includes>
 - </testResource>
 - <testResource>
 - <directory>src/test/resources</directory>
 - <filtering>false</filtering>
 - <excludes>
 - <exclude>**/*.xml</exclude>
 - <exclude>**/*.txt</exclude>
 - </excludes>
 - </testResource>
 - </testResources>
 - <pluginManagement>
 - <plugins>
 - <plugin>
 - <artifactId>maven-resources-plugin</artifactId>
 - <configuration>
 - <includeEmptyDirs>true</includeEmptyDirs>
 - </configuration>
 - </plugin>
 - </plugins>
 - </pluginManagement>
 - <plugins>
 - <plugin>
 - <groupId>org.openmrs.maven.plugins</groupId>
 - <artifactId>maven-openmrs-plugin</artifactId>
 - <extensions>true</extensions>
 - <configuration>
 - <verifyOmod>false</verifyOmod>
 - </configuration>
 - </plugin>
 - </plugins>
 - </build>
 - </project>
 
Advertisement
 
                    Add Comment                
                
                        Please, Sign In to add comment