Bumps [htmlunit](https://github.com/HtmlUnit/htmlunit) from 2.45.0 to 2.53.0. - [Release notes](https://github.com/HtmlUnit/htmlunit/releases) - [Commits](https://github.com/HtmlUnit/htmlunit/compare/2.45.0...2.53.0) --- updated-dependencies: - dependency-name: net.sourceforge.htmlunit:htmlunit dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
51 lines
1.7 KiB
XML
51 lines
1.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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">
|
|
<parent>
|
|
<artifactId>blog</artifactId>
|
|
<groupId>cn.celess</groupId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>blog-partnersite</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.celess</groupId>
|
|
<artifactId>blog-common</artifactId>
|
|
<version>${blog-common.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.celess</groupId>
|
|
<artifactId>blog-user</artifactId>
|
|
<version>${blog-user.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<!-- OkHttp -->
|
|
<dependency>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
<version>4.9.2</version>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.jetbrains.kotlin</groupId>-->
|
|
<!-- <artifactId>kotlin-stdlib</artifactId>-->
|
|
<!-- <version>1.4.20</version>-->
|
|
<!-- <scope>compile</scope>-->
|
|
<!-- </dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>net.sourceforge.htmlunit</groupId>
|
|
<artifactId>htmlunit</artifactId>
|
|
<version>2.53.0</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project> |