Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Besufikad17 committed Sep 25, 2020
1 parent 7439e92 commit 06093b2
Show file tree
Hide file tree
Showing 6 changed files with 90 additions and 4 deletions.
16 changes: 16 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions Abushakir0.2.iml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5">
<output url="file://$MODULE_DIR$/target/classes" />
<output-test url="file://$MODULE_DIR$/target/test-classes" />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
Expand All @@ -18,5 +20,6 @@
</library>
</orderEntry>
<orderEntry type="library" name="json-simple-3.0.2" level="project" />
<orderEntry type="library" name="Maven: com.github.cliftonlabs:json-simple:3.0.2" level="project" />
</component>
</module>
47 changes: 47 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.besufikad17</groupId>
<artifactId>abushakir</artifactId>
<version>1.0</version>
<packaging>jar</packaging>

<name>Abushakir</name>
<description>Java package allows developers to implement Ethiopian Calendar and Datetime System in their application(s)`</description>
<url>https://github.com/Besufikad17/Abushakir</url>

<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>

<developers>
<developer>
<name>Besufikad M. Tilahun</name>
<email>[email protected]</email>
<organization>com.abushakir</organization>
<organizationUrl>https://github.com/Besufikad17/Abushakir</organizationUrl>
</developer>
<developer>
<name>Yohannes T. Mulatu</name>
<email>[email protected]</email>
<organization>com.abushakir</organization>
<organizationUrl>https://github.com/Besufikad17/Abushakir</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com/Besufikad17/Abushakir.git</connection>
<developerConnection>scm:git:ssh://github.com:Besufikad17/Abushakir.git</developerConnection>
<url>http://github.com/Besufikad17/Abushakir</url>
</scm>

<dependencies>
<dependency>
<groupId>com.github.cliftonlabs</groupId>
<artifactId>json-simple</artifactId>
<version>3.0.2</version>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion src/abushakir/util/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public static int getWenber(int ameteFida , int year){
}

public static int indexOf(String s, String[] arr){
int index = 0;
int index = -1;
for (int i = 0;i<arr.length;i++){
if (arr[i].equals(s)){
index=i;
Expand Down

0 comments on commit 06093b2

Please sign in to comment.