Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
acdc
repository-extension-services
Commits
cd16415e
Commit
cd16415e
authored
Sep 25, 2015
by
acoburn
Browse files
added correct license headers
parent
5f52a75e
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
118 additions
and
40 deletions
+118
-40
acrepo-idiomatic/src/main/java/edu/amherst/acdc/idiomatic/EventRouter.java
...src/main/java/edu/amherst/acdc/idiomatic/EventRouter.java
+2
-0
acrepo-idiomatic/src/main/java/edu/amherst/acdc/idiomatic/IdiomaticHeaders.java
...ain/java/edu/amherst/acdc/idiomatic/IdiomaticHeaders.java
+2
-0
acrepo-idiomatic/src/test/java/edu/amherst/idiomatic/RouteTest.java
...omatic/src/test/java/edu/amherst/idiomatic/RouteTest.java
+2
-0
acrepo-jsonld-cache/src/main/java/edu/amherst/acdc/jsonld/cache/EventRouter.java
.../main/java/edu/amherst/acdc/jsonld/cache/EventRouter.java
+2
-0
acrepo-jsonld-cache/src/main/java/edu/amherst/acdc/jsonld/cache/RiakKeyBuilder.java
...in/java/edu/amherst/acdc/jsonld/cache/RiakKeyBuilder.java
+15
-0
acrepo-jsonld-cache/src/test/java/edu/amherst/acdc/jsonld/cache/RouteTest.java
...rc/test/java/edu/amherst/acdc/jsonld/cache/RouteTest.java
+15
-0
acrepo-jsonld-service/src/main/java/edu/amherst/acdc/jsonld/JsonLdService.java
.../src/main/java/edu/amherst/acdc/jsonld/JsonLdService.java
+7
-8
acrepo-jsonld-service/src/main/java/edu/amherst/acdc/jsonld/JsonLdServiceImpl.java
.../main/java/edu/amherst/acdc/jsonld/JsonLdServiceImpl.java
+7
-8
acrepo-jsonld-service/src/test/java/edu/amherst/acdc/jsonld/JsonLdServiceTest.java
.../test/java/edu/amherst/acdc/jsonld/JsonLdServiceTest.java
+7
-8
acrepo-mint-service/src/main/java/edu/amherst/acdc/mint/MinterService.java
...ce/src/main/java/edu/amherst/acdc/mint/MinterService.java
+7
-8
acrepo-mint-service/src/test/java/edu/amherst/acdc/mint/MinterServiceTest.java
...rc/test/java/edu/amherst/acdc/mint/MinterServiceTest.java
+7
-8
acrepo-template-mustache/src/main/java/edu/amherst/acdc/template/mustache/EventRouter.java
.../java/edu/amherst/acdc/template/mustache/EventRouter.java
+2
-0
acrepo-template-mustache/src/test/java/edu/amherst/acdc/template/mustache/RouteTest.java
...st/java/edu/amherst/acdc/template/mustache/RouteTest.java
+15
-0
acrepo-xml-metadata/src/main/java/edu/amherst/acdc/xml/metadata/EventRouter.java
.../main/java/edu/amherst/acdc/xml/metadata/EventRouter.java
+2
-0
acrepo-xml-metadata/src/test/java/edu/amherst/acdc/mods/RouteTest.java
...tadata/src/test/java/edu/amherst/acdc/mods/RouteTest.java
+15
-0
pom.xml
pom.xml
+11
-0
No files found.
acrepo-idiomatic/src/main/java/edu/amherst/acdc/idiomatic/EventRouter.java
View file @
cd16415e
/**
* Copyright 2015 Amherst College
*
* 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
...
...
acrepo-idiomatic/src/main/java/edu/amherst/acdc/idiomatic/IdiomaticHeaders.java
View file @
cd16415e
/**
* Copyright 2015 Amherst College
*
* 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
...
...
acrepo-idiomatic/src/test/java/edu/amherst/idiomatic/RouteTest.java
View file @
cd16415e
/**
* Copyright 2015 Amherst College
*
* 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
...
...
acrepo-jsonld-cache/src/main/java/edu/amherst/acdc/jsonld/cache/EventRouter.java
View file @
cd16415e
/**
* Copyright 2015 Amherst College
*
* 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
...
...
acrepo-jsonld-cache/src/main/java/edu/amherst/acdc/jsonld/cache/RiakKeyBuilder.java
View file @
cd16415e
/**
* Copyright 2015 Amherst College
*
* 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
edu.amherst.acdc.jsonld.cache
;
import
java.io.IOException
;
...
...
acrepo-jsonld-cache/src/test/java/edu/amherst/acdc/jsonld/cache/RouteTest.java
View file @
cd16415e
/**
* Copyright 2015 Amherst College
*
* 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
edu.amherst.acdc.jsonld.cache
;
import
org.apache.camel.test.blueprint.CamelBlueprintTestSupport
;
...
...
acrepo-jsonld-service/src/main/java/edu/amherst/acdc/jsonld/JsonLdService.java
View file @
cd16415e
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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
/**
* Copyright 2015 Amherst College
*
* 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
* 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,
...
...
acrepo-jsonld-service/src/main/java/edu/amherst/acdc/jsonld/JsonLdServiceImpl.java
View file @
cd16415e
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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
/**
* Copyright 2015 Amherst College
*
* 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
* 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,
...
...
acrepo-jsonld-service/src/test/java/edu/amherst/acdc/jsonld/JsonLdServiceTest.java
View file @
cd16415e
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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
/**
* Copyright 2015 Amherst College
*
* 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
* 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,
...
...
acrepo-mint-service/src/main/java/edu/amherst/acdc/mint/MinterService.java
View file @
cd16415e
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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
/**
* Copyright 2015 Amherst College
*
* 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
* 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,
...
...
acrepo-mint-service/src/test/java/edu/amherst/acdc/mint/MinterServiceTest.java
View file @
cd16415e
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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
/**
* Copyright 2015 Amherst College
*
* 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
* 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,
...
...
acrepo-template-mustache/src/main/java/edu/amherst/acdc/template/mustache/EventRouter.java
View file @
cd16415e
/**
* Copyright 2015 Amherst College
*
* 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
...
...
acrepo-template-mustache/src/test/java/edu/amherst/acdc/template/mustache/RouteTest.java
View file @
cd16415e
/**
* Copyright 2015 Amherst College
*
* 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
edu.amherst.acdc.template.mustache
;
import
org.apache.camel.EndpointInject
;
...
...
acrepo-xml-metadata/src/main/java/edu/amherst/acdc/xml/metadata/EventRouter.java
View file @
cd16415e
/**
* Copyright 2015 Amherst College
*
* 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
...
...
acrepo-xml-metadata/src/test/java/edu/amherst/acdc/mods/RouteTest.java
View file @
cd16415e
/**
* Copyright 2015 Amherst College
*
* 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
edu.amherst.acdc.mods
;
import
org.apache.camel.test.blueprint.CamelBlueprintTestSupport
;
...
...
pom.xml
View file @
cd16415e
...
...
@@ -17,7 +17,13 @@
<name>
Repository Services for use with Fedora
</name>
<description>
A collection of repository services for use with Fedora
</description>
<organization>
<name>
Amherst College
</name>
<url>
https://www.amherst.edu/
</url>
</organization>
<properties>
<project.copyrightYear>
2015
</project.copyrightYear>
<activemq.version>
5.11.1
</activemq.version>
<camel.version>
2.15.2
</camel.version>
<commons-lang.version>
3.4
</commons-lang.version>
...
...
@@ -208,6 +214,11 @@
<artifactId>
maven-checkstyle-plugin
</artifactId>
</plugin>
<plugin>
<groupId>
com.mycila
</groupId>
<artifactId>
license-maven-plugin
</artifactId>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-failsafe-plugin
</artifactId>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment