Skip to content

Commit e79908c

Browse files
authored
Merge pull request #1 from kuchara02/init
Initial commit
2 parents 176d8ec + ba3240a commit e79908c

File tree

4 files changed

+98
-2
lines changed

4 files changed

+98
-2
lines changed

.gitignore

Lines changed: 51 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,51 @@
1-
.DS_Store
2-
**/target/**
1+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
2+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
3+
4+
# User-specific stuff
5+
.idea/**/workspace.xml
6+
.idea/**/tasks.xml
7+
.idea/**/dictionaries
8+
.idea/**/shelf
9+
10+
# Sensitive or high-churn files
11+
.idea/**/dataSources/
12+
.idea/**/dataSources.ids
13+
.idea/**/dataSources.local.xml
14+
.idea/**/sqlDataSources.xml
15+
.idea/**/dynamic.xml
16+
.idea/**/uiDesigner.xml
17+
18+
# Gradle
19+
.idea/**/gradle.xml
20+
.idea/**/libraries
21+
22+
# CMake
23+
cmake-build-debug/
24+
cmake-build-release/
25+
26+
# Mongo Explorer plugin
27+
.idea/**/mongoSettings.xml
28+
29+
# File-based project format
30+
*.iws
31+
32+
# IntelliJ
33+
out/
34+
35+
# mpeltonen/sbt-idea plugin
36+
.idea_modules/
37+
38+
# JIRA plugin
39+
atlassian-ide-plugin.xml
40+
41+
# Cursive Clojure plugin
42+
.idea/replstate.xml
43+
44+
# Crashlytics plugin (for Android Studio and IntelliJ)
45+
com_crashlytics_export_strings.xml
46+
crashlytics.properties
47+
crashlytics-build.properties
48+
fabric.properties
49+
50+
# Editor-based Rest Client
51+
.idea/httpRequests

modules/ClusteringCoefficient/pom.xml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<artifactId>gephi-plugin-parent</artifactId>
6+
<groupId>org.gephi</groupId>
7+
<version>0.9.2</version>
8+
</parent>
9+
10+
<groupId>pl.edu.wat.wcy.student</groupId>
11+
<artifactId>clustering-coefficient-plugin</artifactId>
12+
<version>1.0.0</version>
13+
<packaging>nbm</packaging>
14+
15+
<name>Clustering Coefficient</name>
16+
17+
<dependencies>
18+
<!-- Insert dependencies here -->
19+
</dependencies>
20+
21+
<build>
22+
<plugins>
23+
<plugin>
24+
<groupId>org.codehaus.mojo</groupId>
25+
<artifactId>nbm-maven-plugin</artifactId>
26+
<configuration>
27+
<licenseName>Apache 2.0</licenseName>
28+
<author>Kucharski Kisicki</author>
29+
<authorEmail></authorEmail>
30+
<authorUrl></authorUrl>
31+
<sourceCodeUrl>$sourcecode_url</sourceCodeUrl>
32+
<publicPackages>
33+
<!-- Insert public packages -->
34+
</publicPackages>
35+
</configuration>
36+
</plugin>
37+
</plugins>
38+
</build>
39+
</project>
40+
41+
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Manifest-Version: 1.0
2+
OpenIDE-Module-Name: Clustering Coefficient
3+
OpenIDE-Module-Short-Description: Measure of the degree to which nodes in a graph tend to cluster together.
4+
OpenIDE-Module-Long-Description: Clustering coefficient is a measure of the degree to which nodes in a graph tend to cluster together. Evidence suggests that in most real-world networks, and in particular social networks, nodes tend to create tightly knit groups characterised by a relatively high density of ties; this likelihood tends to be greater than the average probability of a tie randomly established between two nodes.
5+
OpenIDE-Module-Display-Category: Metric

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<!-- List of modules -->
1313
<modules>
1414
<!-- Add here the paths of all modules (e.g. <module>modules/MyModule</module>) -->
15+
<module>modules/ClusteringCoefficient</module>
1516
</modules>
1617

1718
<!-- Properties -->

0 commit comments

Comments
 (0)