File tree Expand file tree Collapse file tree 8 files changed +284
-953
lines changed Expand file tree Collapse file tree 8 files changed +284
-953
lines changed Original file line number Diff line number Diff line change 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+
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 11const
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" ,
You can’t perform that action at this time.
0 commit comments