<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>ResourceDependencyLogic</groupId>
  <artifactId>ResourceDependencyLogic</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  
  <repositories>
        <repository>
            <id>nitta-lab-repo</id>
            <url>http://nitta-lab-www.is.konan-u.ac.jp/repo</url>
        </repository>
    </repositories>
  
  <dependencies>
	  
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.34</version>
            <scope>provided</scope>
        </dependency>
        
        <dependency>
	        <groupId>org.junit.jupiter</groupId>
	        <artifactId>junit-jupiter</artifactId>
	        <version>5.11.3</version> 
	        <scope>test</scope>
	    </dependency>
    
    
    <dependency>
        <groupId>com.nitta-lab</groupId>
        <artifactId>dtram</artifactId>
        <version>1.0</version>
    </dependency>
        
    </dependencies>
  <build>
    <sourceDirectory>src</sourceDirectory>
    <plugins>
		
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.8.1</version>
        <configuration>
          <release>17</release>
        </configuration>
      </plugin>
      
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>3.2.5</version>
    </plugin>
        
    </plugins>
  </build>
</project>