Commit fca8b3a4 by Jessica Hawkwell

adding plugin skeletons

1 parent 975a3e52
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.felinewith.lang_toolkit.plugins</groupId>
<artifactId>dictionary</artifactId>
<packaging>jar</packaging>
<name>Dictionary</name>
<version>1.0-SNAPSHOT</version>
<inceptionYear>2017</inceptionYear>
<description>Language dictionary and vocabulary builder.</description>
<parent>
<groupId>me.felinewith</groupId>
<artifactId>lang-toolkit</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>me.felinewith.lang_toolkit.apps</groupId>
<artifactId>bootstrap</artifactId>
</dependency>
</dependencies>
</project>
dictionary=me.felinewith.lang_toolkit.plugins.dictionary.Dictionary
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.felinewith.lang_toolkit.plugins</groupId>
<artifactId>grapheme</artifactId>
<packaging>jar</packaging>
<name>Grapheme</name>
<version>1.0-SNAPSHOT</version>
<inceptionYear>2017</inceptionYear>
<description>Writing system builder.</description>
<parent>
<groupId>me.felinewith</groupId>
<artifactId>lang-toolkit</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>me.felinewith.lang_toolkit.apps</groupId>
<artifactId>bootstrap</artifactId>
</dependency>
</dependencies>
</project>
grapheme=me.felinewith.lang_toolkit.plugins.grapheme.Grapheme
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.felinewith.lang_toolkit.plugins</groupId>
<artifactId>ipa-helper</artifactId>
<packaging>jar</packaging>
<name>IPA Helper</name>
<version>1.0-SNAPSHOT</version>
<inceptionYear>2017</inceptionYear>
<description>Build your basic phoneme inventory using the International Phonetic Alphabet.</description>
<parent>
<groupId>me.felinewith</groupId>
<artifactId>lang-toolkit</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>me.felinewith.lang_toolkit.apps</groupId>
<artifactId>bootstrap</artifactId>
</dependency>
</dependencies>
</project>
ipa-helper=me.felinewith.lang_toolkit.plugins.ipa_helper.IPAHelper
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.felinewith.lang_toolkit.plugins</groupId>
<artifactId>phonetic</artifactId>
<packaging>jar</packaging>
<name>Phonetic</name>
<version>1.0-SNAPSHOT</version>
<inceptionYear>2017</inceptionYear>
<description>Flesh out your phonetic inventory.</description>
<parent>
<groupId>me.felinewith</groupId>
<artifactId>lang-toolkit</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>me.felinewith.lang_toolkit.apps</groupId>
<artifactId>bootstrap</artifactId>
</dependency>
</dependencies>
</project>
phonetic=me.felinewith.lang_toolkit.plugins.phonetic.Phonetic
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!