Skip to content
This repository was archived by the owner on Feb 8, 2023. It is now read-only.

Commit 8930b4e

Browse files
Merge pull request #1 from js-cookie/wip
Initial implementation
2 parents ec865ab + 3ebdc76 commit 8930b4e

37 files changed

+1875
-65
lines changed
Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,32 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
44
<attributes>
55
<attribute name="optional" value="true"/>
66
<attribute name="maven.pomderived" value="true"/>
77
</attributes>
88
</classpathentry>
9-
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
9+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
1010
<attributes>
11-
<attribute name="maven.pomderived" value="true"/>
12-
<attribute name="owner.project.facets" value="jboss.m2"/>
11+
<attribute name="optional" value="true"/>
12+
<attribute name="maven.pomderived" value="true"/>
1313
</attributes>
1414
</classpathentry>
15-
<classpathentry kind="src" output="target/classes" path="src/main/java">
15+
<classpathentry kind="src" output="target/test-classes" path="src/test/resources">
16+
<attributes>
17+
<attribute name="optional" value="true"/>
18+
<attribute name="maven.pomderived" value="true"/>
19+
</attributes>
20+
</classpathentry>
21+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
1622
<attributes>
17-
<attribute name="optional" value="true"/>
1823
<attribute name="maven.pomderived" value="true"/>
24+
<attribute name="owner.project.facets" value="jboss.m2"/>
1925
</attributes>
2026
</classpathentry>
2127
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
2228
<attributes>
23-
<attribute name="maven.pomderived" value="true"/>
29+
<attribute name="maven.pomderived" value="true"/>
2430
</attributes>
2531
</classpathentry>
2632
<classpathentry kind="output" path="target/classes"/>

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/target
2+
/node
3+
/node_modules
4+
/bower_components

.project

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>Java Cookie</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.wst.common.project.facet.core.builder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.jdt.core.javabuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.m2e.core.maven2Builder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
</buildSpec>
24+
<natures>
25+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
26+
<nature>org.eclipse.jdt.core.javanature</nature>
27+
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
28+
</natures>
29+
</projectDescription>
File renamed without changes.
File renamed without changes.
File renamed without changes.

Java Cookie/.settings/org.eclipse.wst.common.project.facet.core.xml renamed to .settings/org.eclipse.wst.common.project.facet.core.xml

File renamed without changes.

Gruntfile.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module.exports = function (grunt) {
2+
3+
grunt.initConfig({
4+
bower_postinst: {
5+
all: {
6+
options: {
7+
components: {
8+
'js-cookie': ['npm', 'grunt']
9+
}
10+
}
11+
}
12+
}
13+
});
14+
15+
grunt.loadNpmTasks('grunt-bower-postinst');
16+
17+
grunt.registerTask('default', ['bower_postinst']);
18+
};

Java Cookie/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

Java Cookie/pom.xml

Lines changed: 0 additions & 57 deletions
This file was deleted.

0 commit comments

Comments
 (0)