Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
b7046902
提交
b7046902
authored
10 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Exclude .DS_Store files in the jar and zip files.
上级
f04bb792
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
13 行增加
和
5 行删除
+13
-5
Build.java
h2/src/tools/org/h2/build/Build.java
+13
-5
没有找到文件。
h2/src/tools/org/h2/build/Build.java
浏览文件 @
b7046902
...
@@ -410,7 +410,8 @@ public class Build extends BuildBase {
...
@@ -410,7 +410,8 @@ public class Build extends BuildBase {
exclude
(
"temp/org/h2/test/*"
).
exclude
(
"temp/org/h2/test/*"
).
exclude
(
"*.bat"
).
exclude
(
"*.bat"
).
exclude
(
"*.sh"
).
exclude
(
"*.sh"
).
exclude
(
"*.txt"
);
exclude
(
"*.txt"
).
exclude
(
"*.DS_Store"
);
jar
(
"bin/h2"
+
getJarSuffix
(),
files
,
"temp"
);
jar
(
"bin/h2"
+
getJarSuffix
(),
files
,
"temp"
);
filter
(
"src/installer/h2.sh"
,
"bin/h2.sh"
,
"h2.jar"
,
"h2"
+
getJarSuffix
());
filter
(
"src/installer/h2.sh"
,
"bin/h2.sh"
,
"h2.jar"
,
"h2"
+
getJarSuffix
());
filter
(
"src/installer/h2.bat"
,
"bin/h2.bat"
,
"h2.jar"
,
"h2"
+
getJarSuffix
());
filter
(
"src/installer/h2.bat"
,
"bin/h2.bat"
,
"h2.jar"
,
"h2"
+
getJarSuffix
());
...
@@ -440,7 +441,8 @@ public class Build extends BuildBase {
...
@@ -440,7 +441,8 @@ public class Build extends BuildBase {
exclude
(
"temp/org/h2/tools/*"
).
exclude
(
"temp/org/h2/tools/*"
).
exclude
(
"*.bat"
).
exclude
(
"*.bat"
).
exclude
(
"*.sh"
).
exclude
(
"*.sh"
).
exclude
(
"*.txt"
);
exclude
(
"*.txt"
).
exclude
(
"*.DS_Store"
);
files
.
add
(
new
File
(
"temp/org/h2/tools/DeleteDbFiles.class"
));
files
.
add
(
new
File
(
"temp/org/h2/tools/DeleteDbFiles.class"
));
files
.
add
(
new
File
(
"temp/org/h2/tools/CompressTool.class"
));
files
.
add
(
new
File
(
"temp/org/h2/tools/CompressTool.class"
));
jar
(
"bin/h2android"
+
getJarSuffix
(),
files
,
"temp"
);
jar
(
"bin/h2android"
+
getJarSuffix
(),
files
,
"temp"
);
...
@@ -463,7 +465,8 @@ public class Build extends BuildBase {
...
@@ -463,7 +465,8 @@ public class Build extends BuildBase {
exclude
(
"temp/org/h2/test/*"
).
exclude
(
"temp/org/h2/test/*"
).
exclude
(
"*.bat"
).
exclude
(
"*.bat"
).
exclude
(
"*.sh"
).
exclude
(
"*.sh"
).
exclude
(
"*.txt"
);
exclude
(
"*.txt"
).
exclude
(
"*.DS_Store"
);
long
kb
=
jar
(
"bin/h2-client"
+
getJarSuffix
(),
files
,
"temp"
);
long
kb
=
jar
(
"bin/h2-client"
+
getJarSuffix
(),
files
,
"temp"
);
if
(
kb
<
350
||
kb
>
450
)
{
if
(
kb
<
350
||
kb
>
450
)
{
throw
new
RuntimeException
(
"Expected file size 350 - 450 KB, got: "
+
kb
);
throw
new
RuntimeException
(
"Expected file size 350 - 450 KB, got: "
+
kb
);
...
@@ -477,6 +480,7 @@ public class Build extends BuildBase {
...
@@ -477,6 +480,7 @@ public class Build extends BuildBase {
compileMVStore
(
true
);
compileMVStore
(
true
);
manifestMVStore
();
manifestMVStore
();
FileList
files
=
files
(
"temp"
);
FileList
files
=
files
(
"temp"
);
files
.
exclude
(
"*.DS_Store"
);
jar
(
"bin/h2-mvstore"
+
getJarSuffix
(),
files
,
"temp"
);
jar
(
"bin/h2-mvstore"
+
getJarSuffix
(),
files
,
"temp"
);
}
}
...
@@ -507,7 +511,8 @@ public class Build extends BuildBase {
...
@@ -507,7 +511,8 @@ public class Build extends BuildBase {
exclude
(
"temp/org/h2/tools/*"
).
exclude
(
"temp/org/h2/tools/*"
).
exclude
(
"*.bat"
).
exclude
(
"*.bat"
).
exclude
(
"*.sh"
).
exclude
(
"*.sh"
).
exclude
(
"*.txt"
);
exclude
(
"*.txt"
).
exclude
(
"*.DS_Store"
);
files
.
add
(
new
File
(
"temp/org/h2/tools/DeleteDbFiles.class"
));
files
.
add
(
new
File
(
"temp/org/h2/tools/DeleteDbFiles.class"
));
files
.
add
(
new
File
(
"temp/org/h2/tools/CompressTool.class"
));
files
.
add
(
new
File
(
"temp/org/h2/tools/CompressTool.class"
));
jar
(
"bin/h2small"
+
getJarSuffix
(),
files
,
"temp"
);
jar
(
"bin/h2small"
+
getJarSuffix
(),
files
,
"temp"
);
...
@@ -522,6 +527,7 @@ public class Build extends BuildBase {
...
@@ -522,6 +527,7 @@ public class Build extends BuildBase {
manifest
(
"H2 JaQu"
,
""
);
manifest
(
"H2 JaQu"
,
""
);
FileList
files
=
files
(
"temp/org/h2/jaqu"
);
FileList
files
=
files
(
"temp/org/h2/jaqu"
);
files
.
addAll
(
files
(
"temp/META-INF/MANIFEST.MF"
));
files
.
addAll
(
files
(
"temp/META-INF/MANIFEST.MF"
));
files
.
exclude
(
"*.DS_Store"
);
jar
(
"bin/h2jaqu"
+
getJarSuffix
(),
files
,
"temp"
);
jar
(
"bin/h2jaqu"
+
getJarSuffix
(),
files
,
"temp"
);
}
}
...
@@ -754,7 +760,8 @@ public class Build extends BuildBase {
...
@@ -754,7 +760,8 @@ public class Build extends BuildBase {
exclude
(
"*.MF"
).
exclude
(
"*.MF"
).
exclude
(
"*.java"
).
exclude
(
"*.java"
).
exclude
(
"*/package.html"
).
exclude
(
"*/package.html"
).
exclude
(
"*/java.sql.Driver"
);
exclude
(
"*/java.sql.Driver"
).
exclude
(
"*.DS_Store"
);
if
(
basicOnly
)
{
if
(
basicOnly
)
{
files
=
files
.
keep
(
"src/main/org/h2/res/_messages_en.*"
);
files
=
files
.
keep
(
"src/main/org/h2/res/_messages_en.*"
);
}
}
...
@@ -928,6 +935,7 @@ public class Build extends BuildBase {
...
@@ -928,6 +935,7 @@ public class Build extends BuildBase {
copy
(
"temp"
,
files
(
"src/tools/WEB-INF/console.html"
),
"src/tools/WEB-INF"
);
copy
(
"temp"
,
files
(
"src/tools/WEB-INF/console.html"
),
"src/tools/WEB-INF"
);
copy
(
"temp/WEB-INF/lib"
,
files
(
"bin/h2"
+
getJarSuffix
()),
"bin"
);
copy
(
"temp/WEB-INF/lib"
,
files
(
"bin/h2"
+
getJarSuffix
()),
"bin"
);
FileList
files
=
files
(
"temp"
).
exclude
(
"temp/org*"
).
exclude
(
"temp/META-INF*"
);
FileList
files
=
files
(
"temp"
).
exclude
(
"temp/org*"
).
exclude
(
"temp/META-INF*"
);
files
.
exclude
(
"*.DS_Store"
);
jar
(
"bin/h2console.war"
,
files
,
"temp"
);
jar
(
"bin/h2console.war"
,
files
,
"temp"
);
}
}
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论