Skip to content

Commit

Permalink
change package (via #13)
Browse files Browse the repository at this point in the history
  • Loading branch information
eroshenkoam authored Jun 18, 2020
1 parent cc07d39 commit 4db0f5a
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id("com.jfrog.bintray") version "1.8.5"
}

group = "org.example"
group = "io.github.eroshenkoam"

description = "Allure PDF"

Expand All @@ -15,7 +15,7 @@ tasks.withType(Wrapper::class) {
}

application {
mainClassName = "io.eroshenkoam.allure.AllurePDF"
mainClassName = "io.github.eroshenkoam.allure.AllurePDF"
}

repositories {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.eroshenkoam.allure;
package io.github.eroshenkoam.allure;

import picocli.CommandLine;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.eroshenkoam.allure;
package io.github.eroshenkoam.allure;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.lowagie.text.Chunk;
Expand All @@ -10,7 +10,7 @@
import com.lowagie.text.Paragraph;
import com.lowagie.text.Phrase;
import com.lowagie.text.pdf.PdfWriter;
import io.eroshenkoam.allure.util.PdfUtil;
import io.github.eroshenkoam.allure.util.PdfUtil;
import io.qameta.allure.model.Attachment;
import io.qameta.allure.model.Label;
import io.qameta.allure.model.StepResult;
Expand All @@ -33,8 +33,8 @@
import java.util.Objects;
import java.util.stream.Collectors;

import static io.eroshenkoam.allure.FontHolder.loadArialFont;
import static io.eroshenkoam.allure.util.PdfUtil.addEmptyLine;
import static io.github.eroshenkoam.allure.FontHolder.loadArialFont;
import static io.github.eroshenkoam.allure.util.PdfUtil.addEmptyLine;
import static java.util.stream.Collectors.groupingBy;
import static java.util.stream.Collectors.joining;
import static java.util.stream.Collectors.mapping;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.eroshenkoam.allure;
package io.github.eroshenkoam.allure;

import com.lowagie.text.Font;
import com.lowagie.text.pdf.BaseFont;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.eroshenkoam.allure;
package io.github.eroshenkoam.allure;

import picocli.CommandLine;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.eroshenkoam.allure.util;
package io.github.eroshenkoam.allure.util;

import io.qameta.allure.model.Status;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.eroshenkoam.allure.util;
package io.github.eroshenkoam.allure.util;

import com.lowagie.text.Element;
import com.lowagie.text.Paragraph;
Expand Down

0 comments on commit 4db0f5a

Please sign in to comment.