Skip to content

Instantly share code, notes, and snippets.

@jonaskahn
Created May 11, 2023 04:00
Show Gist options
  • Save jonaskahn/dfd882a9d9cbb5684d83494a36bbe080 to your computer and use it in GitHub Desktop.
Save jonaskahn/dfd882a9d9cbb5684d83494a36bbe080 to your computer and use it in GitHub Desktop.

SETUP

  1. Clone 3 sources in the sample folder. Ex:
-- SOURCE/
		--	minoda.simulation.ecsite/
		--	minoda.simulation.libs/
		--	minoda.simulation.stafftool/
  1. Create pom.xml file in SOURCE folder. Ex:
-- SOURCE/
		--	minoda.simulation.ecsite/
		--	minoda.simulation.libs/
		--	minoda.simulation.stafftool/
		--	pom.xml

Content pom.xml

<?xml version="1.0" encoding="UTF-8"?>  
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
xmlns="http://maven.apache.org/POM/4.0.0"  
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>minoda.simulation.parent</groupId>  
	<artifactId>parents</artifactId>  
	<name>PARENTS MINODA</name>  
	<version>1.0.0</version>  
	<packaging>pom</packaging>  
	<modules>  
		<module>minoda.simulation.ecsite</module>  
		<module>minoda.simulation.libs</module>  
		<module>minoda.simulation.stafftool</module>  
	</modules>  
</project>
  1. Add these line to files pom.xml in folder minoda.simulation.libs/pom.xml right below <modules> ..... </modules>
<build>  
	<resources>  
		<resource>  
			<directory>src/main/resources</directory>  
		</resource>  
		<resource>  
			<directory>dev-resources</directory>  
		</resource>  
	</resources>  
</build>
  1. Open SOURCE in InteliJ Idea
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment