Skip to content
This repository was archived by the owner on Dec 26, 2017. It is now read-only.

Commit d727898

Browse files
committed
shorten namespace
1 parent ea30339 commit d727898

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jar {
8282
license project.license
8383

8484
instruction 'Import-Package', '*'
85-
instruction 'Export-Package', "edu.amherst.acdc.trellis.service.id;version=${projectOsgiVersion}"
85+
instruction 'Export-Package', "edu.amherst.acdc.trellis.namespaces;version=${projectOsgiVersion}"
8686
instruction 'Require-Capability', 'osgi.extender; filter:="(osgi.extender=osgi.serviceloader.registrar)";resolution:=optional'
8787
instruction 'Provide-Capability', 'osgi.serviceloader; osgi.serviceloader=edu.amherst.acdc.trellis.spi.NamespaceService'
8888
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package edu.amherst.acdc.trellis.service.namespaces.json;
16+
package edu.amherst.acdc.trellis.namespaces;
1717

1818
import static java.util.Collections.unmodifiableMap;
1919
import static java.util.Objects.requireNonNull;

src/main/java/edu/amherst/acdc/trellis/service/namespaces/json/package-info.java renamed to src/main/java/edu/amherst/acdc/trellis/namespaces/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
*
2222
* @author acoburn
2323
*/
24-
package edu.amherst.acdc.trellis.service.namespaces.json;
24+
package edu.amherst.acdc.trellis.namespaces;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
edu.amherst.acdc.trellis.service.namespaces.json.NamespacesJsonContext
1+
edu.amherst.acdc.trellis.namespaces.NamespacesJsonContext
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package edu.amherst.acdc.trellis.service.namespaces.json;
16+
package edu.amherst.acdc.trellis.namespaces;
1717

1818
import static org.junit.Assert.assertEquals;
1919
import static org.junit.Assert.assertFalse;

0 commit comments

Comments
 (0)