Skip to content

Commit 7a72fcf

Browse files
committed
📝 update site for 2.0.9 release
1 parent 8178e51 commit 7a72fcf

File tree

8 files changed

+284
-953
lines changed

8 files changed

+284
-953
lines changed

README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
Introduction
2+
===========
3+
4+
Apache log4net is a sub project of the Apache Logging Services project.
5+
Apache log4net graduated from the Apache Incubator in February 2007.
6+
Web site: http://logging.apache.org/log4net
7+
8+
9+
Documentation
10+
=============
11+
12+
For local documentation, which is correct for this release see:
13+
doc/index.html
14+
15+
For the latest documentation see the log4net web site at:
16+
http://logging.apache.org/log4net
17+
18+
Contributing
19+
============
20+
21+
log4net development happens on the logging dev mailing list, see
22+
https://logging.apache.org/log4net/mail-lists.html. Please join the
23+
mailing list and discuss bigger changes before working on them.
24+
25+
For bigger changes we must ask you to sign a Contributor License
26+
Agreement http://www.apache.org/licenses/#clas.
27+
28+
Github pull requests are one way to contribute, The Apache issue
29+
tracker is no longer accepting new issues but is available at
30+
https://issues.apache.org/jira/browse/LOG4NET for access to
31+
previous issues.
32+

README.txt

Lines changed: 0 additions & 47 deletions
This file was deleted.

local-tasks/build-site.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
const
2+
gulp = requireModule("gulp"),
3+
spawn = requireModule("spawn"),
4+
env = requireModule("env"),
5+
os = require("os"),
6+
which = require("which");
7+
8+
gulp.task("build-site", async () => {
9+
let maven;
10+
try {
11+
maven = await which("mvn");
12+
} catch (e) {
13+
let extra;
14+
switch (os.platform()) {
15+
case "win32":
16+
extra = "You may install maven via scoop (https://scoop.sh/)";
17+
break;
18+
case "darwin":
19+
extra = "You may install maven via homebrew";
20+
break;
21+
default:
22+
extra = "You should install maven with your package manager";
23+
break;
24+
}
25+
throw new Error(`Unable to find mvn in your path. ${extra}`);
26+
}
27+
28+
return spawn("mvn", [ "site" ]);
29+
});
30+

local-tasks/zip.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const
2-
gulp = requireModule("gulp-with-help"),
2+
gulp = requireModule("gulp"),
33
promisify = requireModule("promisify-stream"),
44
readNuspecVersion = requireModule("read-nuspec-version"),
55
target = "build/artifacts",

0 commit comments

Comments
 (0)