From bfdf2a30bee0b065d22ec69d667696de3771a3ca Mon Sep 17 00:00:00 2001 From: Alexandre THOMAS Date: Thu, 11 Apr 2013 16:30:06 +0200 Subject: [PATCH] update licence --- LICENCE.txt => LICENSE.txt | 2 +- README.md | 17 ------ .../athomas/androidkickstartr/AppDetails.java | 15 +++++ .../athomas/androidkickstartr/Kickstartr.java | 15 +++++ .../generator/ApplicationGenerator.java | 15 +++++ .../generator/Generator.java | 15 +++++ .../generator/MainActivityGenerator.java | 15 +++++ .../generator/RestClientGenerator.java | 15 +++++ .../generator/SampleFragmentGenerator.java | 15 +++++ .../generator/ViewPagerAdapterGenerator.java | 15 +++++ .../util/CodeModelHelper.java | 15 +++++ .../androidkickstartr/util/FileHelper.java | 15 +++++ .../androidkickstartr/util/GitHubber.java | 15 +++++ .../androidkickstartr/util/GithubUtils.java | 15 +++++ .../androidkickstartr/util/LibraryHelper.java | 15 +++++ .../androidkickstartr/util/RefHelper.java | 15 +++++ .../util/ResourcesUtils.java | 15 +++++ .../util/TemplatesFileHelper.java | 15 +++++ .../androidkickstartr/util/Zipper.java | 15 +++++ .../KickstartrMavenTest.java | 15 +++++ .../KickstartrNonMavenTest.java | 15 +++++ .../model/ApplicationTest.java | 15 +++++ .../com/athomas/androidkickstartr/Main.java | 15 +++++ .../androidkickstartr/util/StringUtils.java | 15 +++++ .../src/main/webapp/WEB-INF/web.xml | 17 ++++++ pom.xml | 58 +++++++++++++------ src/etc/header.txt | 13 +++++ 27 files changed, 401 insertions(+), 36 deletions(-) rename LICENCE.txt => LICENSE.txt (95%) create mode 100644 src/etc/header.txt diff --git a/LICENCE.txt b/LICENSE.txt similarity index 95% rename from LICENCE.txt rename to LICENSE.txt index aa3d062..484ba6a 100644 --- a/LICENCE.txt +++ b/LICENSE.txt @@ -1,7 +1,7 @@ ************************************ This project is available under the following license: ************************************ -Copyright 2012 Alexandre THOMAS +Copyright 2012 eBusiness Information Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of diff --git a/README.md b/README.md index c1a6290..89ac1ad 100644 --- a/README.md +++ b/README.md @@ -10,20 +10,3 @@ AndroidKickstartR helps you to quickly create a well configured Android applicat ## Developed by * Alexandre THOMAS - [@AleksThomas](https://twitter.com/AleksThomas) - - -## Licence - -Copyright 2012 Alexandre THOMAS - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. \ No newline at end of file diff --git a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/AppDetails.java b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/AppDetails.java index 99861fa..b99732e 100644 --- a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/AppDetails.java +++ b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/AppDetails.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr; import java.util.List; diff --git a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/Kickstartr.java b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/Kickstartr.java index 61fd03f..5339766 100644 --- a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/Kickstartr.java +++ b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/Kickstartr.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr; import java.io.File; diff --git a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/ApplicationGenerator.java b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/ApplicationGenerator.java index cfd9bb7..4e80eff 100644 --- a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/ApplicationGenerator.java +++ b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/ApplicationGenerator.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr.generator; import java.io.IOException; diff --git a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/Generator.java b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/Generator.java index 1f48a55..308129e 100644 --- a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/Generator.java +++ b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/Generator.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr.generator; import java.io.IOException; diff --git a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/MainActivityGenerator.java b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/MainActivityGenerator.java index 45b8908..14a2292 100644 --- a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/MainActivityGenerator.java +++ b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/MainActivityGenerator.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr.generator; import static com.sun.codemodel.JExpr.TRUE; diff --git a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/RestClientGenerator.java b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/RestClientGenerator.java index e23ef3e..7ade888 100644 --- a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/RestClientGenerator.java +++ b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/RestClientGenerator.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr.generator; import static com.sun.codemodel.ClassType.INTERFACE; diff --git a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/SampleFragmentGenerator.java b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/SampleFragmentGenerator.java index 8d51200..b4825cd 100644 --- a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/SampleFragmentGenerator.java +++ b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/SampleFragmentGenerator.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr.generator; import java.io.IOException; diff --git a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/ViewPagerAdapterGenerator.java b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/ViewPagerAdapterGenerator.java index 6c4cee6..9e81c59 100644 --- a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/ViewPagerAdapterGenerator.java +++ b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/generator/ViewPagerAdapterGenerator.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr.generator; import java.io.IOException; diff --git a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/CodeModelHelper.java b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/CodeModelHelper.java index 2b00f62..07ea59b 100644 --- a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/CodeModelHelper.java +++ b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/CodeModelHelper.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr.util; import com.athomas.androidkickstartr.AppDetails; diff --git a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/FileHelper.java b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/FileHelper.java index 0b710dd..3840736 100644 --- a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/FileHelper.java +++ b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/FileHelper.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr.util; import java.io.File; diff --git a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/GitHubber.java b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/GitHubber.java index 8517625..2414685 100644 --- a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/GitHubber.java +++ b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/GitHubber.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr.util; import org.eclipse.egit.github.core.Repository; diff --git a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/GithubUtils.java b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/GithubUtils.java index c358dc6..d13f58a 100644 --- a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/GithubUtils.java +++ b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/GithubUtils.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr.util; import org.slf4j.Logger; diff --git a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/LibraryHelper.java b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/LibraryHelper.java index 9b4ba24..cb8890a 100644 --- a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/LibraryHelper.java +++ b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/LibraryHelper.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr.util; import java.io.File; diff --git a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/RefHelper.java b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/RefHelper.java index fc25026..3f8b03a 100644 --- a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/RefHelper.java +++ b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/RefHelper.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr.util; import java.util.HashMap; diff --git a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/ResourcesUtils.java b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/ResourcesUtils.java index c773695..6c3b1d7 100644 --- a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/ResourcesUtils.java +++ b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/ResourcesUtils.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr.util; import java.io.File; diff --git a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/TemplatesFileHelper.java b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/TemplatesFileHelper.java index bebab7a..13dec35 100644 --- a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/TemplatesFileHelper.java +++ b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/TemplatesFileHelper.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr.util; import java.io.File; diff --git a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/Zipper.java b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/Zipper.java index 2567864..f3f29dc 100644 --- a/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/Zipper.java +++ b/androidkickstartr-core/src/main/java/com/athomas/androidkickstartr/util/Zipper.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr.util; import java.io.File; diff --git a/androidkickstartr-core/src/test/java/com/athomas/androidkickstartr/KickstartrMavenTest.java b/androidkickstartr-core/src/test/java/com/athomas/androidkickstartr/KickstartrMavenTest.java index fa9638f..cd0d54a 100644 --- a/androidkickstartr-core/src/test/java/com/athomas/androidkickstartr/KickstartrMavenTest.java +++ b/androidkickstartr-core/src/test/java/com/athomas/androidkickstartr/KickstartrMavenTest.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr; import java.io.File; diff --git a/androidkickstartr-core/src/test/java/com/athomas/androidkickstartr/KickstartrNonMavenTest.java b/androidkickstartr-core/src/test/java/com/athomas/androidkickstartr/KickstartrNonMavenTest.java index 741d280..3b3d79c 100644 --- a/androidkickstartr-core/src/test/java/com/athomas/androidkickstartr/KickstartrNonMavenTest.java +++ b/androidkickstartr-core/src/test/java/com/athomas/androidkickstartr/KickstartrNonMavenTest.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr; import java.io.File; diff --git a/androidkickstartr-core/src/test/java/com/athomas/androidkickstartr/model/ApplicationTest.java b/androidkickstartr-core/src/test/java/com/athomas/androidkickstartr/model/ApplicationTest.java index f406ec1..7eed597 100644 --- a/androidkickstartr-core/src/test/java/com/athomas/androidkickstartr/model/ApplicationTest.java +++ b/androidkickstartr-core/src/test/java/com/athomas/androidkickstartr/model/ApplicationTest.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr.model; import org.junit.Test; diff --git a/androidkickstartr-ws/src/main/java/com/athomas/androidkickstartr/Main.java b/androidkickstartr-ws/src/main/java/com/athomas/androidkickstartr/Main.java index 71436ef..7634e73 100644 --- a/androidkickstartr-ws/src/main/java/com/athomas/androidkickstartr/Main.java +++ b/androidkickstartr-ws/src/main/java/com/athomas/androidkickstartr/Main.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr; import java.io.BufferedReader; diff --git a/androidkickstartr-ws/src/main/java/com/athomas/androidkickstartr/util/StringUtils.java b/androidkickstartr-ws/src/main/java/com/athomas/androidkickstartr/util/StringUtils.java index 2d44af7..dd70227 100644 --- a/androidkickstartr-ws/src/main/java/com/athomas/androidkickstartr/util/StringUtils.java +++ b/androidkickstartr-ws/src/main/java/com/athomas/androidkickstartr/util/StringUtils.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed To in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ package com.athomas.androidkickstartr.util; public class StringUtils { diff --git a/androidkickstartr-ws/src/main/webapp/WEB-INF/web.xml b/androidkickstartr-ws/src/main/webapp/WEB-INF/web.xml index 7e963b1..dcfd235 100644 --- a/androidkickstartr-ws/src/main/webapp/WEB-INF/web.xml +++ b/androidkickstartr-ws/src/main/webapp/WEB-INF/web.xml @@ -1,3 +1,20 @@ + diff --git a/pom.xml b/pom.xml index abe5335..8fe12e0 100644 --- a/pom.xml +++ b/pom.xml @@ -31,9 +31,9 @@ 1.0.0 4.10 2.0.11 - 4.2.2 - 2.2.0.201212191850-r - 2.1.3 + 4.2.2 + 2.2.0.201212191850-r + 2.1.3 @@ -93,22 +93,44 @@ maven-invoker ${maven-invoker.version} - - org.apache.httpcomponents - httpclient - ${httpcomponents.version} - - - org.eclipse.jgit - org.eclipse.jgit - ${jgit.version} - - - org.eclipse.mylyn.github - org.eclipse.egit.github.core - ${egit.version} - + + org.apache.httpcomponents + httpclient + ${httpcomponents.version} + + + org.eclipse.jgit + org.eclipse.jgit + ${jgit.version} + + + org.eclipse.mylyn.github + org.eclipse.egit.github.core + ${egit.version} + + + + + + com.mycila.maven-license-plugin + maven-license-plugin + 1.9.0 + +
src/etc/header.txt
+ + LICENSE.txt + README.md + .gitignore + **/Github.properties + **/resources/** + + true +
+
+
+
+ diff --git a/src/etc/header.txt b/src/etc/header.txt new file mode 100644 index 0000000..7be044f --- /dev/null +++ b/src/etc/header.txt @@ -0,0 +1,13 @@ +Copyright (C) 2012-2013 eBusiness Information, Excilys Group (www.excilys.com) + +Licensed under the Apache License, Version 2.0 (the "License"); you may not +use this file except in compliance with the License. You may obtain a copy of +the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed To in writing, software +distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +License for the specific language governing permissions and limitations under +the License. \ No newline at end of file