Skip to content

Commit

Permalink
#53 packages renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Oct 25, 2024
1 parent 0d3051c commit 4314de8
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/it/larger/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ SOFTWARE.
-->
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.eolang</groupId>
<artifactId>simple</artifactId>
<groupId>org.eolang.hone-it</groupId>
<artifactId>larger</artifactId>
<version>@project.version@</version>
<packaging>jar</packaging>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package org.eolang.hone;
package org.eolang.larger;

class Book implements Material {
private final String title;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package org.eolang.hone;
package org.eolang.larger;

interface Material {
String итог();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package org.eolang.hone;
package org.eolang.larger;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
Expand Down
4 changes: 2 additions & 2 deletions src/it/simple/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ SOFTWARE.
-->
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.eolang</groupId>
<groupId>org.eolang.hone-it</groupId>
<artifactId>simple</artifactId>
<version>@project.version@</version>
<packaging>jar</packaging>
Expand Down Expand Up @@ -65,7 +65,7 @@ SOFTWARE.
</execution>
</executions>
<configuration>
<mainClass>org.eolang.hone.App</mainClass>
<mainClass>org.eolang.simple.App</mainClass>
</configuration>
</plugin>
</plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package org.eolang.hone;
package org.eolang.simple;

public class App {
public static void main(String[] args) {
Expand Down

0 comments on commit 4314de8

Please sign in to comment.