diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-10-13 23:20:17 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-10-13 23:20:17 -0700 |
| commit | e1c4f7ac903df58ae5f63c6f837af9f97426f5ad (patch) | |
| tree | f168f64c1b80d1889d00d2d9f5571ba720c403b0 /VtuberCaptchaUpdater/pom.xml | |
| parent | f7ad0dcaf179c8c10d8ba9353f6a00acde33f574 (diff) | |
add Java captcha data updater script
Diffstat (limited to 'VtuberCaptchaUpdater/pom.xml')
| -rw-r--r-- | VtuberCaptchaUpdater/pom.xml | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/VtuberCaptchaUpdater/pom.xml b/VtuberCaptchaUpdater/pom.xml new file mode 100644 index 0000000..a17a550 --- /dev/null +++ b/VtuberCaptchaUpdater/pom.xml @@ -0,0 +1,47 @@ +<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> + + <groupId>org.example</groupId> + <artifactId>VtuberCaptchaUpdater</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>jar</packaging> + + <name>VtuberCaptchaUpdater</name> + <url>http://maven.apache.org</url> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + + <dependencies> + <dependency> + <groupId>com.pinapelz</groupId> + <artifactId>jholodex</artifactId> + <version>1.41</version> + </dependency> + <dependency> + <groupId>org.json</groupId> + <artifactId>json</artifactId> + <version>20240303</version> + </dependency> + + <dependency> + <groupId>org.postgresql</groupId> + <artifactId>postgresql</artifactId> + <version>42.7.4</version> + </dependency> + </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>9</source> + <target>9</target> + </configuration> + </plugin> + </plugins> + </build> +</project> |
