pom.xml (2436B)
1 <?xml version="1.0" encoding="UTF-8"?> 2 <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"> 3 <modelVersion>4.0.0</modelVersion> 4 5 <groupId>xyz.kebigon</groupId> 6 <artifactId>suumo-search</artifactId> 7 <version>0.1.3-SNAPSHOT</version> 8 9 <name>suumo-search</name> 10 <description>Perform advanced searches on Suumo.jp</description> 11 12 <properties> 13 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 14 <maven.compiler.source>1.8</maven.compiler.source> 15 <maven.compiler.target>1.8</maven.compiler.target> 16 </properties> 17 18 <dependencies> 19 20 <!-- Jackson Databind --> 21 <dependency> 22 <groupId>com.fasterxml.jackson.core</groupId> 23 <artifactId>jackson-databind</artifactId> 24 <version>2.12.3</version> 25 </dependency> 26 27 <!-- Apache Commons Email --> 28 <dependency> 29 <groupId>org.apache.commons</groupId> 30 <artifactId>commons-email</artifactId> 31 <version>1.5</version> 32 </dependency> 33 34 <!-- Apache Log4j SLF4J Binding --> 35 <dependency> 36 <groupId>org.apache.logging.log4j</groupId> 37 <artifactId>log4j-slf4j-impl</artifactId> 38 <version>2.14.1</version> 39 </dependency> 40 41 <!-- Project Lombok --> 42 <dependency> 43 <groupId>org.projectlombok</groupId> 44 <artifactId>lombok</artifactId> 45 <version>1.18.20</version> 46 <scope>provided</scope> 47 </dependency> 48 49 <!-- HtmlUnit Driver --> 50 <dependency> 51 <groupId>org.seleniumhq.selenium</groupId> 52 <artifactId>htmlunit-driver</artifactId> 53 <version>2.50.0</version> 54 </dependency> 55 56 <!-- Spring expression --> 57 <dependency> 58 <groupId>org.springframework</groupId> 59 <artifactId>spring-expression</artifactId> 60 <version>5.3.7</version> 61 </dependency> 62 63 <!-- JUnit Jupiter API --> 64 <dependency> 65 <groupId>org.junit.jupiter</groupId> 66 <artifactId>junit-jupiter-api</artifactId> 67 <version>5.7.2</version> 68 <scope>test</scope> 69 </dependency> 70 </dependencies> 71 72 <build> 73 <plugins> 74 <plugin> 75 <artifactId>maven-assembly-plugin</artifactId> 76 <configuration> 77 <descriptors> 78 <descriptor>src/assembly/assembly.xml</descriptor> 79 </descriptors> 80 </configuration> 81 <executions> 82 <execution> 83 <phase>package</phase> 84 <goals> 85 <goal>single</goal> 86 </goals> 87 </execution> 88 </executions> 89 </plugin> 90 </plugins> 91 </build> 92 93 </project>