Skip to content

Commit

Permalink
Migrate to com.1c-syntax namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
nixel2007 committed Oct 2, 2019
1 parent 70d8448 commit 9c494ff
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repositories {
maven { url = URI("https://jitpack.io") }
}

group = "org.github._1c_syntax"
group = "com.github.1c-syntax"
version = gitVersionCalculator.calculateVersion("v")

tasks.withType<JavaCompile> {
Expand Down Expand Up @@ -56,10 +56,10 @@ idea {
tasks.generateGrammarSource {
arguments = arguments + "-visitor"
arguments = arguments + "-package"
arguments = arguments + "org.github._1c_syntax.bsl.parser"
arguments = arguments + "com.github._1c_syntax.bsl.parser"
arguments = arguments + "-encoding"
arguments = arguments + "utf8"
outputDirectory = file("src/main/gen/org/github/_1c_syntax/bsl/parser")
outputDirectory = file("src/main/gen/com/github/_1c_syntax/bsl/parser")
}

tasks.generateGrammarSource {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* You should have received a copy of the GNU Lesser General Public
* License along with BSL Parser.
*/
package org.github._1c_syntax.bsl.parser;
package com.github._1c_syntax.bsl.parser;

import org.antlr.v4.runtime.CharStream;
import org.antlr.v4.runtime.CharStreams;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* You should have received a copy of the GNU Lesser General Public
* License along with BSL Parser.
*/
package org.github._1c_syntax.bsl.parser;
package com.github._1c_syntax.bsl.parser;

import org.antlr.v4.runtime.ParserRuleContext;
import org.antlr.v4.runtime.Token;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
// Originally released by:
// (‑●‑●)> released under the WTFPL v2 license, by Gregory Pakosz (@gpakosz)

package org.github._1c_syntax.bsl.parser;
package com.github._1c_syntax.bsl.parser;

import java.io.IOException;
import java.io.InputStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* You should have received a copy of the GNU Lesser General Public
* License along with BSL Parser.
*/
package org.github._1c_syntax.bsl.parser;
package com.github._1c_syntax.bsl.parser;

import org.antlr.v4.runtime.CharStream;
import org.antlr.v4.runtime.CharStreams;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* You should have received a copy of the GNU Lesser General Public
* License along with BSL Parser.
*/
package org.github._1c_syntax.bsl.parser;
package com.github._1c_syntax.bsl.parser;

import org.antlr.v4.runtime.CharStream;
import org.antlr.v4.runtime.CharStreams;
Expand Down

0 comments on commit 9c494ff

Please sign in to comment.