Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
askbooks
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
齐文博
askbooks
Commits
e24c2fff
Commit
e24c2fff
authored
Aug 14, 2024
by
齐文博
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
eb709116
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
14 deletions
+40
-14
encodings.xml
.idea/encodings.xml
+3
-0
pom.xml
pom.xml
+24
-14
setting.xml
setting.xml
+13
-0
No files found.
.idea/encodings.xml
View file @
e24c2fff
...
@@ -3,5 +3,7 @@
...
@@ -3,5 +3,7 @@
<component
name=
"Encoding"
>
<component
name=
"Encoding"
>
<file
url=
"file://$PROJECT_DIR$/src/main/java"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/src/main/java"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/src/main/resources"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/src/main/resources"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/src/test"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/src/test/resources"
charset=
"UTF-8"
/>
</component>
</component>
</project>
</project>
\ No newline at end of file
pom.xml
View file @
e24c2fff
...
@@ -4,15 +4,16 @@
...
@@ -4,15 +4,16 @@
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
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>
<modelVersion>
4.0.0
</modelVersion>
<
parent
>
<
!-- <parent>--
>
<groupId>
com.pcloud.universe
</groupId
>
<!-- <groupId>com.pcloud.universe</groupId>--
>
<artifactId>
universe-commons-parent
</artifactId
>
<!-- <artifactId>universe-commons-parent</artifactId>--
>
<version>
3.0.0-SNAPSHOT
</version
>
<!-- <version>3.0.0-SNAPSHOT</version>--
>
<
/parent
>
<
!-- </parent>--
>
<groupId>
com.lemon
</groupId>
<groupId>
com.lemon
</groupId>
<artifactId>
Lemon
</artifactId>
<artifactId>
Lemon
</artifactId>
<version>
3.1.0-SNAPSHOT
</version>
<!-- <version>3.1.0-SNAPSHOT</version>-->
<version>
3.1.0
</version>
<!--公共配置-->
<!--公共配置-->
<properties>
<properties>
...
@@ -27,7 +28,7 @@
...
@@ -27,7 +28,7 @@
<aspectj.version>
1.9.8
</aspectj.version>
<aspectj.version>
1.9.8
</aspectj.version>
<jackson.version>
2.6.5
</jackson.version>
<jackson.version>
2.6.5
</jackson.version>
<
universe-error-alarm.version>
3.0.1-SNAPSHOT
</universe-error-alarm.version
>
<
!-- <universe-error-alarm.version>3.0.1-SNAPSHOT</universe-error-alarm.version>--
>
</properties>
</properties>
...
@@ -35,6 +36,7 @@
...
@@ -35,6 +36,7 @@
<!-- maven-surefire-plugin 配合testng执行测试用例的maven插件 -->
<!-- maven-surefire-plugin 配合testng执行测试用例的maven插件 -->
<!--java:io.qameta.allure:allure-java-commons-->
<!--java:io.qameta.allure:allure-java-commons-->
<build>
<build>
<sourceDirectory>
src/test
</sourceDirectory>
<resources>
<resources>
<resource>
<resource>
<directory>
src/test/resources
</directory>
<directory>
src/test/resources
</directory>
...
@@ -82,13 +84,23 @@
...
@@ -82,13 +84,23 @@
</plugins>
</plugins>
</build>
</build>
<distributionManagement>
<repository>
<id>
nexus-releases
</id>
<url>
http://192.168.83.20:8081/nexus/content/repositories/releases/
</url>
</repository>
<snapshotRepository>
<id>
nexus-snapshots
</id>
<url>
http://192.168.83.20:8081/nexus/content/repositories/snapshots/
</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependencies>
<
dependency
>
<
!-- <dependency>--
>
<groupId>
com.pcloud.universe
</groupId
>
<!-- <groupId>com.pcloud.universe</groupId>--
>
<artifactId>
universe-error-alarm
</artifactId
>
<!-- <artifactId>universe-error-alarm</artifactId>--
>
<version>
${universe-error-alarm.version}
</version
>
<!-- <version>${universe-error-alarm.version}</version>--
>
<
/dependency
>
<
!-- </dependency>--
>
<!-- JSON类型操作坐标-->
<!-- JSON类型操作坐标-->
<dependency>
<dependency>
...
@@ -141,7 +153,6 @@
...
@@ -141,7 +153,6 @@
<groupId>
org.testng
</groupId>
<groupId>
org.testng
</groupId>
<artifactId>
testng
</artifactId>
<artifactId>
testng
</artifactId>
<version>
6.14.3
</version>
<version>
6.14.3
</version>
<scope>
test
</scope>
</dependency>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
...
@@ -213,7 +224,6 @@
...
@@ -213,7 +224,6 @@
<groupId>
io.qameta.allure
</groupId>
<groupId>
io.qameta.allure
</groupId>
<artifactId>
allure-testng
</artifactId>
<artifactId>
allure-testng
</artifactId>
<version>
2.17.3
</version>
<version>
2.17.3
</version>
<scope>
test
</scope>
</dependency>
</dependency>
...
...
setting.xml
0 → 100644
View file @
e24c2fff
<servers>
<server>
<id>
nexus-releases
</id>
<username>
deployment
</username>
<password>
deployment123
</password>
</server>
<server>
<id>
nexus-snapshots
</id>
<username>
deployment
</username>
<password>
deployment123
</password>
</server>
</servers>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment