Alluxio / Community

New Contributor Tasks for Alluxio
20 stars 38 forks source link

Keep modules in underfs/pom.xml sorted #569

Closed apc999 closed 3 years ago

apc999 commented 3 years ago

Modules at https://github.com/Alluxio/alluxio/blob/master/underfs/pom.xml#L26 should be sorted alphabetically

  <modules>
    <module>abfs</module>
    <module>adl</module>
    <module>cos</module>
    <module>gcs</module>
    <module>hdfs</module>
    <module>kodo</module>
    <module>local</module>
    <module>oss</module>
    <module>s3a</module>
    <module>swift</module>
    <module>wasb</module>
    <module>web</module>
    <module>ozone</module>
    <module>cosn</module>
  </modules>
BUPTAnderson commented 3 years ago

In the current master branch:

<modules>
    <module>abfs</module>
    <module>adl</module>
    <module>cos</module>
    <module>cosn</module>
    <module>gcs</module>
    <module>hdfs</module>
    <module>kodo</module>
    <module>local</module>
    <module>oss</module>
    <module>ozone</module>
    <module>s3a</module>
    <module>swift</module>
    <module>wasb</module>
    <module>web</module>
  </modules>

They are already in order, so this issues could be closed?

LuQQiu commented 3 years ago

Thanks @BUPTAnderson for updating!