Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart-room-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
smart-room-platform
Commits
bf63f4e8
Commit
bf63f4e8
authored
Dec 26, 2024
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
初始化提交
parent
9f302cf2
Pipeline
#2878
failed with stages
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
7 deletions
+22
-7
assembly/assembly.xml
assembly/assembly.xml
+0
-5
pom.xml
pom.xml
+0
-2
smart-room-manager/pom.xml
smart-room-manager/pom.xml
+22
-0
No files found.
assembly/assembly.xml
View file @
bf63f4e8
...
@@ -10,23 +10,18 @@
...
@@ -10,23 +10,18 @@
<fileSets>
<fileSets>
<fileSet>
<fileSet>
<directory>
target/bin
</directory>
<directory>
target/bin
</directory>
<!-- <directory>src/main/bin</directory>-->
<outputDirectory>
bin
</outputDirectory>
<outputDirectory>
bin
</outputDirectory>
<fileMode>
0755
</fileMode>
<fileMode>
0755
</fileMode>
</fileSet>
</fileSet>
<fileSet>
<fileSet>
<!-- <directory>${project.parent.basedir}/dist/${project.parent.artifactId}/boot</directory>-->
<directory>
${project.parent.basedir}/dist/${project.parent.artifactId}/boot
</directory>
<directory>
${project.parent.basedir}/dist/${project.parent.artifactId}/boot
</directory>
<outputDirectory>
boot
</outputDirectory>
<outputDirectory>
boot
</outputDirectory>
<fileMode>
0755
</fileMode>
<fileMode>
0755
</fileMode>
</fileSet>
</fileSet>
<fileSet>
<fileSet>
<!-- <directory>${project.parent.basedir}/dist/${project.parent.artifactId}/db</directory>-->
<directory>
./db
</directory>
<directory>
./db
</directory>
<includes>
<includes>
<include>
*.sql
</include>
<include>
*.sql
</include>
<include>
service.exe
</include>
<include>
service.xml
</include>
</includes>
</includes>
<outputDirectory>
db
</outputDirectory>
<outputDirectory>
db
</outputDirectory>
<fileMode>
0755
</fileMode>
<fileMode>
0755
</fileMode>
...
...
pom.xml
View file @
bf63f4e8
...
@@ -63,8 +63,6 @@
...
@@ -63,8 +63,6 @@
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-loadbalancer
</artifactId>
<artifactId>
spring-cloud-loadbalancer
</artifactId>
</dependency>
</dependency>
</dependencies>
</dependencies>
<build>
<build>
...
...
smart-room-manager/pom.xml
View file @
bf63f4e8
...
@@ -187,6 +187,28 @@
...
@@ -187,6 +187,28 @@
</execution>
</execution>
</executions>
</executions>
</plugin>
</plugin>
<plugin>
<artifactId>
maven-assembly-plugin
</artifactId>
<version>
3.3.0
</version>
<executions>
<execution>
<id>
make-assembly
</id>
<phase>
package
</phase>
<goals>
<goal>
single
</goal>
</goals>
<configuration>
<finalName>
${project.artifactId}
</finalName>
<appendAssemblyId>
false
</appendAssemblyId>
<descriptors>
<descriptor>
../assembly/assembly.xml
</descriptor>
</descriptors>
<outputDirectory>
${project.parent.basedir}/dist/${project.artifactId}
</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</plugins>
</build>
</build>
...
...
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