Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
Administrator
Openfire
Commits
2fbd1a3d
Commit
2fbd1a3d
authored
Jan 14, 2016
by
Christian Schudt
Committed by
daryl herzmann
Mar 16, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Work on compiling plugins with JspC
parent
2f0ea660
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
17 deletions
+12
-17
openfire-plugin-assembly.xml
...rc/main/resources/assemblies/openfire-plugin-assembly.xml
+7
-7
openfire-plugin-jspc.xml
...or/src/main/resources/assemblies/openfire-plugin-jspc.xml
+0
-10
pom.xml
plugins/pom.xml
+5
-0
No files found.
plugins/openfire-plugin-assembly-descriptor/src/main/resources/assemblies/openfire-plugin-assembly.xml
View file @
2fbd1a3d
...
...
@@ -33,26 +33,26 @@
<!-- Don't include jsp pages, they will be compiled -->
<excludes>
<exclude>
**/*.jsp
</exclude>
<exclude>
web/WEB-INF/web.xml
</exclude>
</excludes>
</fileSet>
<!-- The jar-file containing the compiled plugin code. This is assembled
by the assembly descriptor "openfire-plugin-jar" -->
<!-- web.xml (it will be modified by JspC -->
<fileSet>
<outputDirectory>
/web/WEB-INF
</outputDirectory>
<directory>
${project.build.directory}
</directory>
<outputDirectory>
/lib
</outputDirectory>
<includes>
<include>
plugin-${project.artifactId}.jar
</include>
<include>
web.xml
</include>
</includes>
</fileSet>
<!-- The jar-file containing the
pre-compiled JSP pages
. This is assembled
by the assembly descriptor "openfire-plugin-j
spc
" -->
<!-- The jar-file containing the
compiled plugin code
. This is assembled
by the assembly descriptor "openfire-plugin-j
ar
" -->
<fileSet>
<directory>
${project.build.directory}
</directory>
<outputDirectory>
/lib
</outputDirectory>
<includes>
<include>
plugin-${project.artifactId}
-jspc
.jar
</include>
<include>
plugin-${project.artifactId}.jar
</include>
</includes>
</fileSet>
...
...
plugins/openfire-plugin-assembly-descriptor/src/main/resources/assemblies/openfire-plugin-jspc.xml
deleted
100644 → 0
View file @
2f0ea660
<assembly
xmlns=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"
>
<id>
openfire-plugin-jspc
</id>
<formats>
<format>
jar
</format>
</formats>
<includeBaseDirectory>
false
</includeBaseDirectory>
</assembly>
\ No newline at end of file
plugins/pom.xml
View file @
2fbd1a3d
...
...
@@ -113,6 +113,11 @@
<goals>
<goal>
jspc
</goal>
</goals>
<configuration>
<jspc>
<package>
org.jivesoftware.openfire.plugin.${project.artifactId}
</package>
</jspc>
</configuration>
</execution>
</executions>
<dependencies>
...
...
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