Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
Fess Search engine
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Leder
Fess Search engine
Commits
7e990718
Commit
7e990718
authored
8 years ago
by
Shinsuke Sugaya
Browse files
Options
Downloads
Patches
Plain Diff
fix #532 : download mydbflute from lastaflute
parent
46ed766e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
Loading
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
README.md
+1
-1
1 addition, 1 deletion
README.md
dbflute.xml
+26
-0
26 additions, 0 deletions
dbflute.xml
dbflute_fess/_project.bat
+1
-1
1 addition, 1 deletion
dbflute_fess/_project.bat
dbflute_fess/_project.sh
+1
-1
1 addition, 1 deletion
dbflute_fess/_project.sh
pom.xml
+1
-0
1 addition, 0 deletions
pom.xml
with
30 additions
and
3 deletions
README.md
+
1
−
1
View file @
7e990718
...
...
@@ -73,7 +73,7 @@ Run package goal and then the release file is created in target/releases.
### Generate Source Code
$ mvn
dbflute:download
# (one time command)
$ mvn
antrun:run
# (one time command)
$ mvn dbflute:freegen
$ mvn license:format
...
...
This diff is collapsed.
Click to expand it.
dbflute.xml
0 → 100644
+
26
−
0
View file @
7e990718
<?xml version="1.0" encoding="UTF-8"?>
<project
name=
"dbflute"
basedir=
"."
>
<property
name=
"mydbflute.dir"
value=
"${basedir}/mydbflute"
/>
<property
name=
"target.dir"
value=
"${basedir}/target"
/>
<property
name=
"mydbflute.url"
value=
"https://github.com/lastaflute/lastaflute-example-waterfront/archive/master.zip"
/>
<target
name=
"mydbflute.check"
>
<condition
property=
"mydbflute.exists"
>
<available
file=
"${mydbflute.dir}"
type=
"dir"
/>
</condition>
</target>
<target
name=
"download.dbflute"
depends=
"mydbflute.check"
unless=
"mydbflute.exists"
>
<mkdir
dir=
"${mydbflute.dir}"
/>
<get
dest=
"${target.dir}/mydbflute.zip"
>
<url
url=
"${mydbflute.url}"
/>
</get>
<unzip
dest=
"${mydbflute.dir}"
src=
"${target.dir}/mydbflute.zip"
>
<patternset>
<include
name=
"lastaflute-example-waterfront-master/mydbflute/dbflute-1.x/**"
/>
</patternset>
<cutdirsmapper
dirs=
"2"
/>
</unzip>
</target>
</project>
This diff is collapsed.
Click to expand it.
dbflute_fess/_project.bat
+
1
−
1
View file @
7e990718
...
...
@@ -2,7 +2,7 @@
set
ANT_OPTS
=
-Xmx
512
m
set
DBFLUTE_HOME
=
..\mydbflute\dbflute
-
1
.
1.1
set
DBFLUTE_HOME
=
..\mydbflute\dbflute
-
1
.
x
set
MY_PROPERTIES_PATH
=
build
.properties
...
...
This diff is collapsed.
Click to expand it.
dbflute_fess/_project.sh
+
1
−
1
View file @
7e990718
...
...
@@ -2,6 +2,6 @@
export
ANT_OPTS
=
-Xmx512m
export
DBFLUTE_HOME
=
../mydbflute/dbflute-1.
1.1
export
DBFLUTE_HOME
=
../mydbflute/dbflute-1.
x
export
MY_PROPERTIES_PATH
=
build.properties
This diff is collapsed.
Click to expand it.
pom.xml
+
1
−
0
View file @
7e990718
...
...
@@ -250,6 +250,7 @@
</dependencies>
<configuration>
<tasks>
<ant
antfile=
"${basedir}/dbflute.xml"
target=
"download.dbflute"
/>
<ant
antfile=
"${basedir}/plugin.xml"
target=
"install.plugins"
>
<property
name=
"with.fess"
value=
"true"
/>
</ant>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment