This is an automated email from the ASF dual-hosted git repository. gk pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/turbine-fulcrum-yaafi.git
commit 78d0ee5091e6a6386657316bb4b4944749d902ee Author: Georg Kallidis <[email protected]> AuthorDate: Tue Dec 14 12:06:40 2021 +0100 Update: Use Java 8 streams and Method refs, update .gitignore --- .gitignore | 3 ++- README.md | 9 +++++++++ README.txt | 3 --- pom.xml | 3 +-- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 73c259a..2b59c9d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ -target +target/ +.settings *.log .classpath .project diff --git a/README.md b/README.md new file mode 100644 index 0000000..5526cc1 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# What is Fulcrum YAAFI? + +----------------------------------------------------------------------------- + +Apache Fulcrum YAAFI is IOC container based on the Avalon framework. + +- [Fulcrum YAAFI](https://turbine.apache.org/fulcrum/fulcrum-yaafi/) is used by [Apache Turbine](https://turbine.apache.org/). + +- Find all Fulcrum components here [Fulcrum](https://turbine.apache.org/fulcrum/index.html). \ No newline at end of file diff --git a/README.txt b/README.txt deleted file mode 100644 index 4180ff5..0000000 --- a/README.txt +++ /dev/null @@ -1,3 +0,0 @@ -What is Fulcrum YAAFI? ------------------------------------------------------------------------------ -Fulcrum YAAFI is IOC container based on the Avalon framework. \ No newline at end of file diff --git a/pom.xml b/pom.xml index 334299d..1d4ecad 100644 --- a/pom.xml +++ b/pom.xml @@ -141,6 +141,5 @@ <turbine.site.path>turbine-fulcrum-yaafi</turbine.site.path> <turbine.scmPubCheckoutDirectory>${turbine.site.cache}/fulcrum/yaafi</turbine.scmPubCheckoutDirectory> <turbine.site.cache>${project.build.directory}/turbine-sites</turbine.site.cache> - <siteContent.path>${project.build.directory}/staging</siteContent.path><!-- default stagingSiteURL --> - </properties> + </properties> </project>
