FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
AttackTreeDesigner/assembly.xml at main · Modelio-R-D/AttackTreeDesigner · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
Modelio-R-D
/
AttackTreeDesigner
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
6
Code
Issues
0
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
AttackTreeDesigner
/
assembly.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
55 lines (55 loc) · 1.73 KB
Breadcrumbs
AttackTreeDesigner
/
assembly.xml
Copy path
File metadata and controls
55 lines (55 loc) · 1.73 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<
assembly
xmlns=
"
http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.0.0.1-SNAPSHOT
"
xmlns:xsi=
"
http://www.w3.org/2001/XMLSchema-instance
"
xsi:schemaLocation=
"
http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.0.0.1-SNAPSHOT http://maven.apache.org/xsd/assembly-1.0.0.1-SNAPSHOT.xsd
"
>
<
id
>bin</
id
>
<
formats
>
<
format
>zip</
format
>
</
formats
>
<
includeBaseDirectory
>false</
includeBaseDirectory
>
<
fileSets
>
<!--
Copy DataSheet HTML files
-->
<
fileSet
>
<
directory
>${project.basedir}</
directory
>
<
outputDirectory
>/${project.name}</
outputDirectory
>
<
includes
>
<
include
>DataSheet*.html</
include
>
</
includes
>
<
filtered
>true</
filtered
>
</
fileSet
>
<!--
Copy XML resources
-->
<
fileSet
>
<
directory
>${project.basedir}/src/main/conf</
directory
>
<
outputDirectory
>/${project.name}</
outputDirectory
>
<
includes
>
<
include
>**/*.xml</
include
>
</
includes
>
<
filtered
>true</
filtered
>
</
fileSet
>
<!--
Copy other ressources
-->
<
fileSet
>
<
directory
>${project.basedir}/src/main/conf</
directory
>
<
outputDirectory
>/${project.name}</
outputDirectory
>
<
excludes
>
<
exclude
>**/*.xml</
exclude
>
</
excludes
>
<
filtered
>false</
filtered
>
</
fileSet
>
<!--
Copy module's jar file
-->
<
fileSet
>
<
directory
>${project.build.directory}</
directory
>
<
outputDirectory
>${project.name}/lib</
outputDirectory
>
<
includes
>
<
include
>${project.artifactId}-${project.version}.jar</
include
>
</
includes
>
</
fileSet
>
<!--
Copy java dependencies needed by the module
-->
<
fileSet
>
<
directory
>${project.build.directory}/lib</
directory
>
<
outputDirectory
>${project.name}/lib</
outputDirectory
>
<
includes
>
<
include
>*.jar</
include
>
</
includes
>
</
fileSet
>
</
fileSets
>
</
assembly
>
Back
|
FazBrowse Home
|
New Git URL